<!--
browser_name = navigator.appName;
browser_version = parseFloat(navigator.appVersion); 

if (browser_name == "Netscape" && browser_version >= 3.0){
	THE = 'true';
}else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 3.0){
	THE = 'true';
}else if (browser_version >= 4.0) {
	THE = 'true';
}else{
	THE = 'false';
}

snavdailyon = new Image();    
snavdailyon.src = "../../images/investment/snav_dp_on.gif"; 
snavdailyoff = new Image();      
snavdailyoff.src = "../../images/investment/snav_dp_off.gif";   




function THE_on(imgName) {
	 if (THE == 'true'){
		imgOn = eval(imgName + "on.src");
		document [imgName].src = imgOn;
	}
}

function THE_off(imgName) {
	if (THE == 'true'){
		imgOff = eval(imgName + "off.src");
		document [imgName].src = imgOff;
	}
}
//-->