//reloads the window if Netscape resized
function reloadPage(init){
  if (init==true) with (navigator){
    var is_major = parseInt(navigator.appVersion);
    if (is_nav && is_major <= 4){
      document.pgW=innerWidth; document.pgH=innerHeight; onresize=reloadPage;
    }
  }
  else if (innerWidth!=document.pgW || innerHeight!=document.pgH) location.reload();
}
reloadPage(true);

