<!--
//
// Style sheet handling
//
var mnCSS = "<link rel='stylesheet' href='/styles/mac-ns.css' type='text/css'>";
var miCSS = "<link rel='stylesheet' href='/styles/mac-ie.css' type='text/css'>";
var wnCSS = "<link rel='stylesheet' href='/styles/win-ns.css' type='text/css'>";
var wiCSS = "<link rel='stylesheet' href='/styles/win-ie.css' type='text/css'>";
var deCSS = "<link rel='stylesheet' href='/styles/default.css' type='text/css'>";
if (isMac) {
  if (isNetscape) {
//    alert("mnCSS");
    document.write(mnCSS);
  } else if (isIE) {
//    alert("miCSS");
    document.write(miCSS);
  } else {
//    alert("deCSS");
    document.write(deCSS);
  }
} else if (isWindows) {
  if (isNetscape) {
//    alert("wnCSS");
    document.write(wnCSS);
  } else if (isIE) {
//    alert("wiCSS");
    document.write(wiCSS);
  } else {
//    alert("deCSS");
    document.write(deCSS);
  }
} else {
//  alert("deCSS");
  document.write(deCSS);
} 
//-->

