//////////////////////////////////////////////////
////////////// 	"zpop" Function...	//////////////
//////////////////////////////////////////////////
var p; 
function zpop(url,id,h,w,mb,tb) { 
p = window.open(url,id,"height="+h+",width="+w+",menubar="+mb+",resizable=yes,toolbar="+tb+",scrollbars=yes"); 
p.window.focus()
} 

//////////////////////////////////////////////////
////////////// 			MENU		//////////////
//////////////////////////////////////////////////
bName = navigator.appName;
   bVer=parseInt(navigator.appVersion);
   if ((bName == "Netscape" && bVer>=3) ||
   (bName == "Microsoft Internet Explorer" && bVer >=3)) br="n3";
   else br="n2";
   //create image objects, preload all active and inactive images.
   if (br== "n3") {
img01on = new Image();
img01on.src= "../images/subMenu_services01_on.gif";

img01off = new Image();
img01off.src= "../images/subMenu_services01.gif";

}
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");
}
}
