	function openWin(URL,width,height)
	 {
   		modelWindow = window.open(URL, "modelWin","width=" + (width)
+ ",height=" + (height) + ",scrollbars=no");
   		modelWindow.focus();
	}

// Browser Detect
bName = navigator.appName; //detect for Netscape 3+ or IE 4+
bVer = parseInt(navigator.appVersion);
if ((bName == "Netscape" && bVer >= 3) ||
	(bName == "Microsoft Internet Explorer" && bVer >=4)) br = "n3";
else br = "n2";
// Create image objects, preload all active and inactive /images.
if (br== "n3") {
// Active
	img01on = new Image();
	img01on.src = "/images/buttons/b_ho2.gif";
	img02on = new Image();
	img02on.src = "/images/buttons/b_mi2.gif";
	img03on = new Image();
	img03on.src = "/images/buttons/b_ab2.gif";
	img04on = new Image();
	img04on.src = "/images/buttons/b_bi2.gif";
	img05on = new Image();
	img05on.src = "/images/buttons/b_co2.gif";
	img06on = new Image();
	img06on.src = "/images/buttons/b_csc2.gif";
	img07on = new Image();
	img07on.src = "/images/buttons/b_llm2.gif";
	img08on = new Image();
	img08on.src = "/images/buttons/b_rar2.gif";
	img09on = new Image();
	img09on.src = "/images/buttons/b_in2.gif";
	

	
// Inactive
	img01off = new Image();
	img01off.src = "/images/buttons/b_ho1.gif";
	img02off = new Image();
	img02off.src = "/images/buttons/b_mi1.gif";
	img03off = new Image();
	img03off.src = "/images/buttons/b_ab1.gif";
	img04off = new Image();
	img04off.src = "/images/buttons/b_bi1.gif";
	img05off = new Image();
	img05off.src = "/images/buttons/b_co1.gif";
	img06off = new Image();
	img06off.src = "/images/buttons/b_csc1.gif";
	img07off = new Image();
	img07off.src = "/images/buttons/b_llm1.gif";
	img08off = new Image();
	img08off.src = "/images/buttons/b_rar1.gif";
	img09off = new Image();
	img09off.src = "/images/buttons/b_in1.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");
	}
}




