
<!--
bName = navigator.appName;	
											// Detect if browser is Netscape 3 + or IE 4 +.
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") { 
    img1on = new Image();			// Create ten image objects for the
    img1on.src = "images/pointer.gif"; // active images; the images displayed  
    img2on = new Image();			// when the mouse moves over the 
    img2on.src = "images/pointer.gif"; // rollovers.   
	img3on = new Image();
    img3on.src = "images/pointer.gif";
 
    
    
									 
	img1off = new Image();				// Create ten image objects for the 
    img1off.src = "images/black.gif";	// inactive images; the images 
	img2off = new Image();				// displayed when the mouse moves off
    img2off.src = "images/black.gif"; // the rollovers.	
	img3off = new Image();
    img3off.src = "images/black.gif";
	}
	
	
	function imgAct(imgName) { // Function to "activate" images.
	  if (br == "n3") {
    document[imgName].src = eval(imgName + "on.src");  
    }
  }
function imgInact(imgName) {  // Function to "deactivate" images.
	if (br == "n3") {
	   document[imgName].src = eval(imgName + "off.src"); 
  }
}
// -->


