	function cNetscapeLayerProblem()
	{
		this.mReloadPage = fReloadPage;
	}
//------------------------------------------------------------------
	function fReloadPage(init) 
	{
 		 if (init == true) with (navigator) 
		{
			if ((appName == "Netscape") && (parseInt(appVersion) == 4)) 
			{
    			document.documentX = innerWidth; 
				document.documentY = innerHeight; 
				onResize = this.mReloadPage; 
			}
		}
  		else if (innerWidth != document.documentX || innerHeight != document.documentY) 
		{
			location.reload();
		}
	}