// -*- c++ -*-

//--------------------------------------------------------


var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);

var NS4 = (bName == "Netscape" && bVer >= 4);
var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
var NS3 = (bName == "Netscape" && bVer < 4);
var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);

var selected = "";

//LAYER SWITCHING CODE

if (NS4 || IE4)
{
  if (navigator.appName == "Netscape")
  {
    layerStyleRef="layer.";
    layerRef="document.layers";
    styleSwitch="";
  }
  else
  {
    layerStyleRef="layer.style.";
    layerRef="document.all";
    styleSwitch=".style";
  }
}

//------------------- some DHTML functionality ------------
function onFocus()
{
  if (IE4)
  {
    window.event.srcElement.style.borderColor = "red";
  }
}
function onBlur()
{
  if (IE4)
  {
    window.event.srcElement.style.borderColor = "#006EA4";
  }
}
