//alert("resizeFix.js"); // #+#
function reloadPage(init)
{  //Nav4 Resize Fix
  if (init==true) with (navigator) 
  {
    if ((appName=="Netscape")&&(parseInt(appVersion)==4)) 
    {
      document.pgW=innerWidth; document.pgH=innerHeight; onresize=reloadPage; 
    }//if
  }//if
  else if (innerWidth!=document.pgW || innerHeight!=document.pgH) 
  {
    location.reload();
  }//else
}//reloadPage

reloadPage(true);
