
<!--
BrowserName = navigator.appName;
BrowserVer  = parseInt(navigator.appVersion);
version = "bad";

if((BrowserName == "Netscape" && BrowserVer >= 3) || (BrowserName == "Microsoft Internet Explorer" && BrowserVer >= 3))
  version = "good";

if(version == "good")
{
  menu1_1on = new Image(76,20); menu1_1on.src = "images/btn1_on.gif";
  menu1_2on = new Image(58,20); menu1_2on.src = "images/btn2_on.gif";
  menu1_3on = new Image(70,20); menu1_3on.src = "images/btn3_on.gif";
  menu1_4on = new Image(64,20); menu1_4on.src = "images/btn4_on.gif";
  menu1_5on = new Image(65,20); menu1_5on.src = "images/btn5_on.gif";
  menu1_6on = new Image(67,20); menu1_6on.src = "images/btn6_on.gif";
    
  menu1_1off = new Image(76,20); menu1_1off.src = "images/btn1.gif";
  menu1_2off = new Image(58,20); menu1_2off.src = "images/btn2.gif";
  menu1_3off = new Image(70,20); menu1_3off.src = "images/btn3.gif";
  menu1_4off = new Image(64,20); menu1_4off.src = "images/btn4.gif";
  menu1_5off = new Image(65,20); menu1_5off.src = "images/btn5.gif";
  menu1_6off = new Image(67,20); menu1_6off.src = "images/btn6.gif";
  
}

function img_act(imgName) 
{
  if(version=="good")
  {
    imgOn = eval(imgName + "on.src");
    document [imgName].src = imgOn;
  }
}

function img_inact(imgName) 
{
  if(version=="good")
  {
    imgOff = eval(imgName + "off.src");
    document [imgName].src = imgOff;
  }
}

function img_status(imgName1, imgName2) 
{
  if(version=="good")
  {
    imgStatus = eval(imgName2 + ".src");
    document [imgName1].src = imgStatus;
  }
}

//-->
