// tests to see if the page was loaded without a parent document (not as part of frames)
// and pulls page into the frameset

if(top==self) { 
	//var sThisURL = unescape(window.location.pathname);
	//var sGotoURL = "default.aspx"; 
	var oAppVer = navigator.appVersion;
	var bIsNetscape = (navigator.appName == 'Netscape') && ((oAppVer.indexOf('3') != -1) || (oAppVer.indexOf('4') != -1));
	var bIsMicrosoftIE = (oAppVer.indexOf('MSIE 4') != -1);	
	if (bIsNetscape || bIsMicrosoftIE){
		location.replace("default.aspx");
	}else{
		location.href = "default.aspx";
	}
}