<!--
function reloadPage(bIsReload) {
 with (navigator) {
  if (bIsReload) {
   if ((appName=="Netscape") && (parseInt(appVersion)==4)) {
    document.pageWidth=innerWidth;
    document.pageHeight=innerHeight;
    onresize=reloadPage;
   }
  } else {
   if ((innerWidth!=document.pageWidth) || (innerHeight!=document.pageHeight)) {
    location.reload();
   }
  }
 }
}
reloadPage(true);
//-->