<!--
// 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
var FramesetDancercise = 1;
function CheckLocation() {
		if(self.location.search.length > 0) {
			var location = self.location.search.length;
			var New_url = self.location.search.substring(1,location);
			if (document.images)
				self.right.location.replace(New_url);
			else
				self.right.location.href = (New_url);
		}
}
//-->