
<!--
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);

if      (bName == "Netscape" && bVer >= 4) br = "n4";
else if (bName == "Netscape" && bVer == 3) br = "n3";
else if (bName == "Netscape" && bVer == 2) br = "n2";
else if (bName == "Microsoft Internet Explorer" && bVer >= 4) br = "e4";
else if (bName == "Microsoft Internet Explorer") br = "e3";
else br = "n2";

// external css file for IE 4+ with Dynamic HTML.
if (br == "e4") {
  document.write("<link rel=stylesheet href=style-ie4.css type=text/css>");
}

// external css file for NN 4+ with Dynamic HTML.
else if (br == "n4") {
  document.write("<link rel=stylesheet href=style-nn4.css type=text/css>");
}
var ua=navigator.userAgent;
var v=navigator.appVersion.substring(0,1);

function turnOnHighlight(){
if ((ua.lastIndexOf("MSIE")!=-1) && (v!="1") && (v!="2") && (v!="3"))
{
   document.body.onmouseover=HighLightBox;
   document.body.onmouseout=LowLightBox;
}
}

function HighLightBox()
{
   src=event.toElement;
   if (src.tagName=="A")
   {
      src.oldcol=src.style.color;
      src.style.color="#CCCCCC";
   }
}

function LowLightBox()
{
   src=event.fromElement;
   if (src.tagName=="A") src.style.color=src.oldcol;
}
// -->
