	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_ab2.gif";

	img02on = new Image();

	img02on.src = "/images/buttons/b_pr2.gif";

	img03on = new Image();

	img03on.src = "/images/buttons/b_as2.gif";

	img04on = new Image();

	img04on.src = "/images/buttons/b_ab_o2.gif";

	img05on = new Image();

	img05on.src = "/images/buttons/b_re2.gif";

	img06on = new Image();

	img06on.src = "/images/buttons/b_co2.gif";

	img07on = new Image();

	img07on.src = "/images/buttons/b_pleft2.gif";

	img08on = new Image();

	img08on.src = "/images/buttons/b_pl2.gif";

	img09on = new Image();

	img09on.src = "/images/buttons/b_ab_s2.gif";

	img10on = new Image();

	img10on.src = "/images/buttons/b_lg2.gif";



		

// Inactive

	img01off = new Image();

	img01off.src = "/images/buttons/b_ab1.gif";

	img02off = new Image();

	img02off.src = "/images/buttons/b_pr1.gif";

	img03off = new Image();

	img03off.src = "/images/buttons/b_as1.gif";

	img04off = new Image();

	img04off.src = "/images/buttons/b_ab_o1.gif";

	img05off = new Image();

	img05off.src = "/images/buttons/b_re1.gif";

	img06off = new Image();

	img06off.src = "/images/buttons/b_co1.gif";

	img07off = new Image();

	img07off.src = "/images/buttons/b_pleft1.gif";

	img08off = new Image();

	img08off.src = "/images/buttons/b_pl1.gif";

	img09off = new Image();

	img09off.src = "/images/buttons/b_ab_s1.gif";

	img10off = new Image();

	img10off.src = "/images/buttons/b_lg1.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");

	}

}









