// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
if ((bName == "Netscape" && bVer >= 3) || 
(bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3"; 
else br = "n2";

if (br== "n3") { 
img0on = new Image(); 
img0on.src = "img/serv_on.png";

img0off = new Image(); 
img0off.src = "img/serv_off.png"; 

img1on = new Image(); 
img1on.src = "img/dnd_on.png";

img1off = new Image(); 
img1off.src = "img/dnd_off.png"; 

img2on = new Image(); 
img2on.src = "img/pack_on.png";

img2off = new Image(); 
img2off.src = "img/pack_off.png";

img3on = new Image(); 
img3on.src = "img/test_on.png";

img3off = new Image(); 
img3off.src = "img/test_off.png"; 

img4on = new Image(); 
img4on.src = "img/port_on.png";

img4off = new Image(); 
img4off.src = "img/port_off.png";  

img5on = new Image(); 
img5on.src = "img/con_on.png";

img5off = new Image(); 
img5off.src = "img/con_off.png"; 

img6on = new Image(); 
img6on.src = "img/home_on.png";

img6off = new Image(); 
img6off.src = "img/home_off.png"; 

img7on = new Image(); 
img7on.src = "img/news_on.png";

img7off = new Image(); 
img7off.src = "img/news_off.png"; 
}

function imgAct(imgName) {
if (br == "n3") {
document[imgName].src = eval(imgName + "on.src");
}
}

function imgInact(imgName) {
if (br == "n3") {
document[imgName].src = eval(imgName + "off.src");
}
}
