

<!-- //Check Browser Version
bName=navigator.appName;
bVer=parseInt(navigator.appVersion);
    if ((bName == "Netscape" && bVer >= 3) || 
        (bName == "Microsoft Internet Explorer" && bVer >= 4)) br="n3"; 
    else br="n2";
	
// preload images:
if (br== "n3") {
	//Active Images
    img1on=new Image(); img1on.src="images/ProfServices_on.gif";  // ProfServices 
    img2on=new Image(); img2on.src="images/Solutions_on.gif";  // Solutions
   	img3on=new Image(); img3on.src="images/Products_on.gif";  // Products
	img4on=new Image(); img4on.src="images/support_on.gif";  // support 
	img5on=new Image(); img5on.src="images/Library_on.gif";  // Product Library
	img6on=new Image(); img6on.src="images/Events_on.gif";  // Events
	img7on=new Image(); img7on.src="images/Contact_on.gif";  // Contact
	img8on=new Image(); img8on.src="images/Home_on.gif";  // Home
	img9on=new Image(); img9on.src="images/sidelabel9aon.gif";  
	imgAon=new Image(); imgAon.src="images/sidelabelAaon.gif";  
	imgBon=new Image(); imgBon.src="images/sidelabelBaon.gif"; 
	
	//Inactive Images
	img1off=new Image(); img1off.src="images/ProfServices_off.gif"; // ProfServices 
	img2off=new Image(); img2off.src="images/Solutions_off.gif"; // Solutions
	img3off=new Image(); img3off.src="images/Products_off.gif"; // Products
	img4off=new Image(); img4off.src="images/support_off.gif"; // support
	img5off=new Image(); img5off.src="images/Library_off.gif"; // Product Library
	img6off=new Image(); img6off.src="images/Events_off.gif"; // Events
	img7off=new Image(); img7off.src="images/Contact_off.gif"; // Contact
	img8off=new Image(); img8off.src="images/Home_off.gif";  // Home
	img9off=new Image(); img9off.src="images/sidelabel9aoff.gif"; 
	imgAoff=new Image(); imgAoff.src="images/sidelabelAaoff.gif"; 
	imgBoff=new Image(); imgBoff.src="images/sidelabelBaoff.gif"; 
	}
	
function imgAct(imgName) {if (br== "n3") {
    document[imgName].src=eval(imgName + "on.src");}}

function imgInact(imgName) {if (br== "n3") {
    document[imgName].src=eval(imgName + "off.src");}}
//-->