// determine if IE4 or NN3 or greater 
if( self != self )
   self.location.href = window.location.href;
bName = navigator.appName.substring( 0, 8 );
bVer = parseFloat( navigator.appVersion );
iIE4 = 0;
iNetS = 0;
if( bName == "Microsof" && bVer >= 4 )
   iIE4 = 1;
else
   if( bName == "Netscape" && bVer >= 3 )
        iNetS = 1;
		
// fix Netscape Navigator CSS bug window resizing
if (document.layers) {
	origWidth = innerWidth;
	origHeight = innerHeight;
	}
function reloadPage() {
	if (innerWidth != origWidth ||
	innerHeight != origHeight)
	location.reload();
	}
	if (document.layers) onresize = reloadPage;
	