<!-- hide me from antiquated technology

// 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";

    if (br== "n3") {    
	imgaon = new Image();           
    imgaon.src = "/images/header/adphome2.gif"; 
	imgbon = new Image();           
    imgbon.src = "/images/header/contact2.gif";
	imgcon = new Image();           
    imgcon.src = "/images/header/bot_nav_arrow2.gif";
	imgdon = new Image();           
    imgdon.src = "/images/header/bot_nav_arrow2.gif";
	imgeon = new Image();           
    imgeon.src = "/images/header/bot_nav_arrow2.gif";       
	
    imgaoff = new Image();           
    imgaoff.src = "/images/header/adphome.gif"; 
	imgboff = new Image();           
    imgboff.src = "/images/header/contact.gif";
	imgcoff = new Image();           
    imgcoff.src = "/images/header/bot_nav_arrow.gif"; 
	imgdoff = new Image();           
    imgdoff.src = "/images/header/bot_nav_arrow.gif";
	imgeoff = new Image();           
    imgeoff.src = "/images/header/bot_nav_arrow.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 SYNC A STYLE ROLLOVER WITH A IMAGE ROLLOVER - ACTIVE ROLL ON
// SEE BOTTOM NAVIGATION FOR EXAMPLE
function footon(ename){
	var cColor = "FFCC00";
	
	if(document.all) { 
		eval("document.all." + ename + ".color = '" + cColor + "'");
	}
	if(document.layers) {
		eval("document.ids." + ename + ".color = '" + cColor + "'");
    }
}	

// FUNCTION TO SYNC A STYLE ROLLOVER WITH A IMAGE ROLLOVER - INACTIVE ROLL OFF	
function footoff(ename){
	var cColor = "CCCCCC";
	
	if(document.all) { 
		eval("document.all." + ename + ".color = '" + cColor + "'");
	}
	if(document.layers) {
		eval("document.ids." + ename + ".color = '" + cColor + "'");
    }
}

// stop hiding me -->