// 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") { 
   // ===========================================Nav ON =======================

	productson = new Image();
	productson.src = "/images/global/nav2/products_over.gif";
	serviceon = new Image();
	serviceon.src = "/images/global/nav2/services_over.gif";
	industry_solutionson = new Image();
	industry_solutionson.src = "/images/global/nav2/industry_solutions_over.gif";
	supporton = new Image();
	supporton.src = "/images/global/nav2/support_over.gif";
	partnerson = new Image();
	partnerson.src = "/images/global/nav2/partners_over.gif";
	abouton = new Image();
	abouton.src = "/images/global/nav2/about_us_over.gif";
	contacton = new Image();
	contacton.src = "/images/global/nav2/contact_us_over.gif";





   // ===========================================Nav OFF ======================

	productsoff = new Image();
	productsoff.src = "/images/global/nav2/products.gif";
	serviceoff = new Image();
	serviceoff.src = "/images/global/nav2/services.gif";
	industry_solutionsoff = new Image();
	industry_solutionsoff.src = "/images/global/nav2/industry_solutions.gif";
	supportoff = new Image();
	supportoff.src = "/images/global/nav2/support.gif";
	partnersoff = new Image();
	partnersoff.src = "/images/global/nav2/partners.gif";
	aboutoff = new Image();
	aboutoff.src = "/images/global/nav2/about_us.gif";
	contactoff = new Image();
	contactoff.src = "/images/global/nav2/contact_us.gif";

}


// 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");

    }
}


// Function to open new child window.
function opnWin() {
window.open('demo.html','','scrollbars=no,menubar=no,height=200,width=400,resizable=no,toolbar=no,location=no,status=no,left=300,top=300,screenX=300,screenY=300');
}