function ReloadPage(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();
}

ReloadPage(true);

