
<!--
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(18,18); menu1_1on.src = "/images/bt_main_on.gif";
  menu1_2on = new Image(18,18); menu1_2on.src = "/images/bt_history_on.gif";
  menu1_3on = new Image(18,18); menu1_3on.src = "/images/bt_rules_on.gif";
  menu1_4on = new Image(18,18); menu1_4on.src = "/images/bt_strategy_on.gif";
  menu1_5on = new Image(18,18); menu1_5on.src = "/images/bt_articles_on.gif";
  menu1_6on = new Image(18,18); menu1_6on.src = "/images/bt_developers_on.gif";
  menu1_7on = new Image(18,18); menu1_7on.src = "/images/bt_download_on.gif";
  menu1_8on = new Image(18,18); menu1_8on.src = "/images/bt_forum_on.gif";
  menu1_9on = new Image(18,18); menu1_9on.src = "/images/bt_games_on.gif";
  menu1_10on = new Image(18,18); menu1_10on.src = "/images/bt_contact_on.gif";
    
  menu1_1off = new Image(18,18); menu1_1off.src = "/images/bt_main_off.gif";
  menu1_2off = new Image(18,18); menu1_2off.src = "/images/bt_history_off.gif";
  menu1_3off = new Image(18,18); menu1_3off.src = "/images/bt_rules_off.gif";
  menu1_4off = new Image(18,18); menu1_4off.src = "/images/bt_strategy_off.gif";
  menu1_5off = new Image(18,18); menu1_5off.src = "/images/bt_articles_off.gif";
  menu1_6off = new Image(18,18); menu1_6off.src = "/images/bt_developers_off.gif";
  menu1_7off = new Image(18,18); menu1_7off.src = "/images/bt_download_off.gif";
  menu1_8off = new Image(18,18); menu1_8off.src = "/images/bt_forum_off.gif";
  menu1_9off = new Image(18,18); menu1_9off.src = "/images/bt_games_off.gif";
  menu1_10off = new Image(18,18); menu1_10off.src = "/images/bt_contact_off.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;
  }
}

//-->
