//-------------------------------------------------------
//  NS RELOAD - Reloads page if netscape is resized.
//-------------------------------------------------------
//  init - true (function will call itself recursively)
//-------------------------------------------------------
function NSreload( init ) 
{  
  if( init == true ) with ( navigator ) 
  {
    if( ( appName == "Netscape" ) && ( parseInt( appVersion ) == 4 ) ) 
    {
      document.pgW = innerWidth; 
      document.pgH = innerHeight; 
      onresize = NSreload; 
    }
  }
  else 
  {
    if( innerWidth != document.MM_pgW || innerHeight != document.MM_pgH ) location.reload();
  }
}

NSreload( true );