var d = document;

function reloadPage(init) {  //Reloads the window if Netscape 4.x 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);

function holdW(where){
  var mW = "";
  if((!d.getElementById) || (d.getElementById('top').style.minWidth == undefined)) { 
    var mW = ("<hr size=\"0\" color=\"white\" class=\"" + where + "\">");
  }
  return mW  
}