<!--
// Free the index/default.htm with Browsercheck for IE5.x
if ((navigator.appName.indexOf('Microsoft') != -1)&&(parseInt(navigator.appVersion.indexOf('5.')) != -1)&&(self != top)) {
 parent.location.href = self.location.href;
}
// Set frameset-status to "loaded", replace URL if needed, if search string
var FramesetLoaded = 1;
function LoadFrame() {
	if(self.location.search.length > 0) {
	   var lengthens = self.location.search.length; //length of file name
	 var NewUrl = self.location.search.substring(1,lengthens); //store file name
   if (document.images) //check browser version
	self.content.location.replace(NewUrl); //print frame url
   else
	self.content.location.href = (NewUrl);
  }
}
//-->

