// JavaScript Document
function _reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document._pgW=innerWidth; document._pgH=innerHeight; onresize=_reloadPage; }}
  else if (innerWidth!=document._pgW || innerHeight!=document._pgH) location.reload();
}
_reloadPage(true);
