<!--
agent = navigator.userAgent;
var version = navigator.appVersion;
browserVersion = 2;
function lite(imageName,hilite) {
   if (browserVersion == 1) {
      imageShow = eval(hilite + ".src");
      document [imageName].src = imageShow;
   }
}
function norm(imageName,normal) {
   if (browserVersion == 1) {
      imageShow = eval(normal + ".src");
      document [imageName].src = imageShow;
   }
}





<!--
if ((agent.indexOf("a/3",6) == -1) && (agent.indexOf("a/4",6) == -1)) {browserVersion = 2}
   else {browserVersion = 1}
if (browserVersion == 1) {     

btn_01_on = new Image();                           
btn_01_on.src = "../images/btn_one_on.gif";

btn_02_on = new Image();                           
btn_02_on.src = "../images/btn_two_on.gif";

btn_03_on = new Image();                           
btn_03_on.src = "../images/btn_three_on.gif";

btn_04_on = new Image();                           
btn_04_on.src = "../images/btn_four_on.gif";

btn_05_on = new Image();                           
btn_05_on.src = "../images/btn_five_on.gif";

btn_06_on = new Image();                           
btn_06_on.src = "../images/btn_six_on.gif";

btn_07_on = new Image();                           
btn_07_on.src = "../images/bnr_one_on.gif";

btn_08_on = new Image();                           
btn_08_on.src = "../images/bnr_two_on.gif";

btn_09_on = new Image();                           
btn_09_on.src = "../images/bnr_three_on.gif";

btn_10_on = new Image();                           
btn_10_on.src = "../images/bnr_four_on.gif";


btn_01_off = new Image();          
btn_01_off.src = "../images/btn_one_off.gif";

btn_02_off = new Image();          
btn_02_off.src = "../images/btn_two_off.gif";

btn_03_off = new Image();          
btn_03_off.src = "../images/btn_three_off.gif";

btn_04_off = new Image();          
btn_04_off.src = "../images/btn_four_off.gif";

btn_05_off = new Image();          
btn_05_off.src = "../images/btn_five_off.gif";

btn_06_off = new Image();          
btn_06_off.src = "../images/btn_six_off.gif";
  
btn_07_off = new Image();                           
btn_07_off.src = "../images/bnr_one_off.gif";

btn_08_off = new Image();                           
btn_08_off.src = "../images/bnr_two_off.gif";

btn_09_off = new Image();                           
btn_09_off.src = "../images/bnr_three_off.gif";

btn_10_off = new Image();                           
btn_10_off.src = "../images/bnr_four_off.gif";  
}




function Hilite(name,over)
{
	if(window.document.images) 
	{
		if (over)
			window.document.images[name].src = "../images/" + name + "_on.gif";
		else
			window.document.images[name].src =  "../images/" + name + "_off.gif";
	}
}	
