<!-- bug fix for DHTML in Netscape 
// resize window bug
     
//Test browser if it supports the Navigator layer property 
// MSIE supports only the document.all property.
         
var Nav_browser = document.layers
if (Nav_browser) {        
  //Assign the starting width of window to a variable.          
  var beginWidth = innerWidth;
  //Assign the starting height of window to a variable.
  var beginHeight = innerHeight; 
}        

function reloadWindow() {
  //Test for any resize of browser window.
  if (innerWidth != beginWidth || innerHeight != beginHeight) 
         
  //Reload the browser window when there is a resize.
  //--location.reload();
  window.location.reload(); //++
}
         
//Redirect onresize event if it is a Navigator browser to the custom function.
if (Nav_browser) onresize = reloadWindow
//-->


