// 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") { 				

		// Preload images
	
		
		// for the preload page

		add_listing_off	 			= new Image();
		add_listing_off.src			= "http://nevadacountyguide.com/images/home/add_listing_off.gif";
		add_listing_on     			= new Image();
		add_listing_on.src 			= "http://nevadacountyguide.com/images/home/add_listing_on.gif";	
		
		add_article_off	 			= new Image();
		add_article_off.src			= "http://nevadacountyguide.com/images/home/add_article_off.gif";
		add_article_on     			= new Image();
		add_article_on.src 			= "http://nevadacountyguide.com/images/home/add_article_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");
		}
	}	

//--------------------------------------------------------------------------------
