// ns_css_fix.js
// Link in CSS styles for Mac and Netscape 4 and fix resize on NS4
if ((navigator.appVersion.indexOf('Mac') != -1))
  document.write('<LINK REL="stylesheet" HREF="styles/mac_fix.css">');
// PC->Mac, 8->10, 9->12, 10->12, 11->14, 12->16, 14->20, 16->22, 18->24, 20->26, 22->28, 24->30, 26->34, 28->36, 30->40
  
if (document.layers)
  {
  document.write('<LINK REL="stylesheet" HREF="styles/ns4_fix.css">');
  origWidth = innerWidth;
  origHeight = innerHeight;
  onresize = ns4ReloadPage;
  }

function ns4ReloadPage()
  {
  if (innerWidth != origWidth || innerHeight != origHeight)
    location.reload();
  }
