http://hopkins-gi.org/scripts/ns_resize.js  function ns_resz_fix() {   if ((innerWidth != origWidth) || (innerHeight != origHeight))    if (parent)      parent.location.reload();    else      location.reload();     origHeight = innerHeight,      origWidth = innerWidth;         }   function ieMac_resize() {    location.reload();  } /* start up code */  if ((navigator.appName.indexOf('Microsoft') != -1) && (navigator.appVersion.indexOf('Mac') != -1))    onresize = ieMac_resize;    else if ((navigator.appName == "Netscape") && (navigator.appVersion.substring(0, 1) == '4')) {    var origHeight = innerHeight,        origWidth = innerWidth;           onresize = ns_resz_fix; }function MM_reloadPage(init) {  //reloads the window if Nav4 resized  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();}MM_reloadPage(true);