
		// 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") { 				
				
		home_01_off	 			= new Image();
		home_01_off.src			= "images/home_01_off.gif";
		home_01_on     			= new Image();
		home_01_on.src 			= "images/home_01_on.gif";	
		
		home_02_off	 			= new Image();
		home_02_off.src			= "images/home_02_off.gif";
		home_02_on     			= new Image();
		home_02_on.src 			= "images/home_02_on.gif";	
		
		home_03_off	 			= new Image();
		home_03_off.src			= "images/home_03_off.gif";
		home_03_on     			= new Image();
		home_03_on.src 			= "images/home_03_on.gif";	
		
		home_04_off	 			= new Image();
		home_04_off.src			= "images/home_04_off.gif";
		home_04_on     			= new Image();
		home_04_on.src 			= "images/home_04_on.gif";	
		
		home_05_off	 			= new Image();
		home_05_off.src			= "images/home_05_off.gif";
		home_05_on     			= new Image();
		home_05_on.src 			= "images/home_05_on.gif";		
		
		home_06_off	 			= new Image();
		home_06_off.src			= "images/home_06_off.gif";
		home_06_on     			= new Image();
		home_06_on.src 			= "images/home_06_on.gif";		
		
		home_08_off	 			= new Image();
		home_08_off.src			= "images/home_08_off.gif";
		home_08_on     			= new Image();
		home_08_on.src 			= "images/home_08_on.gif";		
	}
		
	function imgOn(imgName){
		if (br == "n3"){
    	document[imgName].src = eval(imgName + "_on.src");
		}
	}
	function imgOff(imgName) {
    	if (br == "n3") {
		document[imgName].src = eval(imgName + "_off.src");
		}
	}	
//----------------------------------------------
// Receiver link popup 
	function receiver() {
		var RMmessage = "Note to Cherokee Investors:\n\n";
		RMmessage += "There are no orders or documents available.\n";		
		RMmessage += "When available, we will post it here.\n\n";
		//RMmessage += "Click OK to continue or CANCEL to close this window.";
		//if (confirm(RMmessage)) { window.location.href = "http://www.cgllp.com/services/rainmaker.html"; }
		alert(RMmessage);
	}
//---------------------------------------------