//* the following if statement was inserted to fix the NE v.6.1 & 6.2 bug *//
//* when you tried to open out site in browsers, the browser would shrink and couldn't be resized *//
//* this error would occur as long as the following objects were called outside the function *//
//* my fix hides the objects from NE v 6.0,6.1,6.2.*//
if (((navigator.appName=="Netscape")&&(parseInt(navigator.appVersion)==4))||(navigator.appName=="Microsoft Internet Explorer")){
var innerWidth = new Object();
var innerHeight = new Object();

var pgW = new Object();
var pgH = new Object();
}
function nsResize(init) {
	if (init==true) with (navigator) {
		if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
			document.pgW=innerWidth; document.pgH=innerHeight; onresize=reloadPage; }
		}
		else if	(innerWidth!=document.pgW || innerHeight!=document.pgH) {
			location.reload();
		}
}
nsResize(true);