<!--

/* This code is Copyright (c)1996-2002 by doZE!gfx */

	browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);
	if ((browserName == "Netscape" && browserVer >= 3) | (browserVer >=4)) version ="yes";
		else version = "no";

	if (version == "yes") {
		bn1on = new Image();
		bn1on.src = "images/bn_customer_r.gif";
		bn2on = new Image();
		bn2on.src = "images/bn_webmasters_r.gif";
		bn3on = new Image();
		bn3on.src = "images/bn_contact_r.gif";

		bn1off = new Image();
		bn1off.src = "images/bn_customer_n.gif";
		bn2off = new Image();
		bn2off.src = "images/bn_webmasters_n.gif";
		bn3off = new Image();
		bn3off.src = "images/bn_contact_n.gif";
		
	}

	function img_act(imgName) {
		if (version == "yes") {
			imgOn = eval(imgName + "on.src");
			document[imgName].src = imgOn;
		}
	}

	function img_inact(imgName) {
		if (version == "yes") {
			imgOff = eval(imgName + "off.src");
			document[imgName].src = imgOff;
		}
	}

//-->
