<!--
// Detect if browser is Netscape 3 + or IE 4 +.
bName = navigator.appName;
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") {


// ### BEGIN DISPLAY SCRIPT IMAGES ### 
	img0on = new Image(); 
	img0on.src = "images/bullet_on_rt.gif";
   	img0off = new Image(); 
   	img0off.src = "images/bullet_rt.gif";

	img1on = new Image(); 
	img1on.src = "images/bullet_on_rt.gif";
   	img1off = new Image(); 
   	img1off.src = "images/bullet_rt.gif";

	img2on = new Image(); 
	img2on.src = "images/bullet_on_rt.gif";
   	img2off = new Image(); 
   	img2off.src = "images/bullet_rt.gif";

	img3on = new Image(); 
	img3on.src = "images/bullet_on_rt.gif";
   	img3off = new Image(); 
   	img3off.src = "images/bullet_rt.gif";

	img4on = new Image(); 
	img4on.src = "images/bullet_on_rt.gif";
   	img4off = new Image(); 
   	img4off.src = "images/bullet_rt.gif";

	img5on = new Image(); 
	img5on.src = "images/bullet_on_rt.gif";
   	img5off = new Image(); 
   	img5off.src = "images/bullet_rt.gif";
   	
   	
   	img6on = new Image(); 
	img6on.src = "images/bullet_on_rt.gif";
   	img6off = new Image(); 
   	img6off.src = "images/bullet_rt.gif";
   	
	img7on = new Image(); 
	img7on.src = "images/bullet_on_rt.gif";
   	img7off = new Image(); 
   	img7off.src = "images/bullet_rt.gif";
   	
	img8on = new Image(); 
	img8on.src = "images/bullet_on_rt.gif";
   	img8off = new Image(); 
   	img8off.src = "images/bullet_rt.gif";
   	
   	
	menu1on = new Image(); 
	menu1on.src = "../images/nav/nav_on_01.jpg";
   	menu1off = new Image(); 
   	menu1off.src = "../images/nav/nav_01.jpg";	
   	
	menu2on = new Image(); 
	menu2on.src = "../images/nav/nav_on_02.jpg";
   	menu2off = new Image(); 
   	menu2off.src = "../images/nav/nav_02.jpg";   	
   	
	menu3on = new Image(); 
	menu3on.src = "../images/nav/nav_on_03.jpg";
   	menu3off = new Image(); 
   	menu3off.src = "../images/nav/nav_03.jpg";	
   	
	menu4on = new Image(); 
	menu4on.src = "../images/nav/nav_on_04.jpg";
   	menu4off = new Image(); 
   	menu4off.src = "../images/nav/nav_04.jpg";	
   	
	menu5on = new Image(); 
	menu5on.src = "../images/nav/nav_on_05.jpg";
   	menu5off = new Image(); 
   	menu5off.src = "../images/nav/nav_05.jpg";	
   	
	menu6on = new Image(); 
	menu6on.src = "../images/nav/nav_on_06.jpg";
   	menu6off = new Image(); 
   	menu6off.src = "../images/nav/nav_06.jpg";	
   	
	menu7on = new Image(); 
	menu7on.src = "../images/nav/nav_on_07.jpg";
   	menu7off = new Image(); 
   	menu7off.src = "../images/nav/nav_07.jpg";	
   	
   	

// ### END DISPLAY SCRIPT IMAGES ### 
    }

// Function to "activate" images.
function imgAct(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "on.src");
    }
}

// Function to "deactivate" images.
function imgInact(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "off.src");
    }
}


// -->

