<!--

/* 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") {
		cc1on = new Image();
		cc1on.src = "images/n4_cc1_r.jpg";
		cc2on = new Image();
		cc2on.src = "images/n4_cc2_r.jpg";
		cc3on = new Image();
		cc3on.src = "images/n4_cc3_r.jpg";
		oc1on = new Image();
		oc1on.src = "images/n4_oc1_r.jpg";
		oc2on = new Image();
		oc2on.src = "images/n4_oc2_r.jpg";
		
		cc1off = new Image();
		cc1off.src = "images/n4_cc1_n.jpg";
		cc2off = new Image();
		cc2off.src = "images/n4_cc2_n.jpg";
		cc3off = new Image();
		cc3off.src = "images/n4_cc3_n.jpg";
		oc1off = new Image();
		oc1off.src = "images/n4_oc1_n.jpg";
		oc2off = new Image();
		oc2off.src = "images/n4_oc2_n.jpg";


		
	}

	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;
		}
	}

//-->
