var Nav4 = ((navigator.appName=="Netscape")&&(parseInt(navigator.appVersion)==4))
var Nav45 = ((navigator.appName=="Netscape")&&(parseFloat(navigator.appVersion)==4.5))

function Netscape4Fix(init) {
	if (init==true) {
		if (Nav4) {
			document.pgW=innerWidth;
			document.pgH=innerHeight;
			onresize=Netscape4Fix;
		}
	}
	else if (innerWidth!=document.pgW || innerHeight!=document.pgH) {
		location.reload();
	}
}

/*if (Nav45) {
	window.location.href = '../site/netscape45.cfm'
} else if (Nav4) {
	alert("Notice:  Certain features of the web site you are viewing are incompatible with the version of Netscape Navigator that you are using. There is a documented bug within Netscape that may cause problems with the positioning of page elements if and when you resize your browser window.  If this occurs, you can simply press the 'Reload' button at the top of the browser window to fix any inconsistencies.  To alleviate the problem completely, please go to http://www.netscape.com/download or http://www.microsoft.com/ie/ to download the latest free versions of either Netscape or Microsoft Internet Explorer.");
}*/

Netscape4Fix(true);