<!--
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
		if (browserName == "Netscape" && browserVer >= 3 || browserName == "Microsoft Internet Explorer" && browserVer>=4) version = "n3";
		else version = "x";

		if (version == "n3")
		{
		ffion = new Image();
		ffion.src = "../images/nav/ffi_on.gif";
		ffioff = new Image();
		ffioff.src = "../images/nav/ffi_off.gif";
		bscon = new Image();
		bscon.src = "../images/nav/bsc_on.gif";
		bscoff = new Image();
		bscoff.src = "../images/nav/bsc_off.gif";
		eaton = new Image();
		eaton.src = "../images/nav/eat_on.gif";
		eatoff = new Image();
		eatoff.src = "../images/nav/eat_off.gif";
		newson = new Image();
		newson.src = "../images/nav/news_on.gif";
		newsoff = new Image();
		newsoff.src = "../images/nav/news_off.gif";
		ksmoff = new Image();
		ksmoff.src = "../images/nav/ksm_off.gif";
		ksmon = new Image();
		ksmon.src = "../images/nav/ksm_on.gif";
		ofcon = new Image();
		ofcon.src = "../images/nav/ofc_on.gif";
		ofcoff = new Image();
		ofcoff.src = "../images/nav/ofc_off.gif";
		homeon = new Image();
		homeon.src = "../images/nav/home_on.gif";
		homeoff = new Image();
		homeoff.src = "../images/nav/home_off.gif";
}
function img_act(imgName)
{
		if (version == "n3")
		{
		imgOn = eval(imgName + "on.src");
		document [imgName].src = imgOn;
		}
}
function img_inact(imgName)
{
		if (version == "n3")
		{
		imgOff = eval(imgName + "off.src");
		document [imgName].src = imgOff;
		}
}
// -->