
//Browser test so early versions won't display
           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 on & off Images
		   img1on         = new Image();              
           img1on.src   = "grfx/gx_find_on.gif";
           img1off        = new Image();               
           img1off.src   = "grfx/gx_find_off.gif";
           
           img2on       = new Image();              
           img2on.src   = "grfx/bn_home_face_on.gif";
           img2off        = new Image();               
           img2off.src   = "grfx/bn_home_face_off.gif";
		   
           img3on       = new Image();              
           img3on.src   = "grfx/bn_home_ada_on.jpg";
           img3off        = new Image();               
           img3off.src   = "grfx/bn_home_ada_off.jpg";
		   
           img4on       = new Image();              
           img4on.src   = "grfx/bn_nav_home_on.gif";
           img4off        = new Image();               
           img4off.src   = "grfx/bn_nav_home_off.gif";
		   
		   img5on         = new Image();              
           img5on.src   = "grfx/bn_nav_practice_on.gif";
           img5off        = new Image();               
           img5off.src   = "grfx/bn_nav_practice_off.gif";
		   
           img6on       = new Image();              
           img6on.src   = "grfx/bn_nav_services_on.gif";
           img6off        = new Image();               
           img6off.src   = "grfx/bn_nav_services_off.gif";
		   
           img7on       = new Image();              
           img7on.src   = "grfx/bn_nav_health_on.gif";
           img7off        = new Image();               
           img7off.src   = "grfx/bn_nav_health_off.gif";
		   
           img8on       = new Image();              
           img8on.src   = "grfx/bn_nav_financial_on.gif";
           img8off        = new Image();               
           img8off.src   = "grfx/bn_nav_financial_off.gif";
		   
		   img9on       = new Image();              
           img9on.src   = "grfx/bn_nav_patient_on.gif";
           img9off        = new Image();               
           img9off.src   = "grfx/bn_nav_patient_off.gif";
		   
		   img10on       = new Image();              
           img10on.src   = "grfx/bn_nav_career_on.gif";
           img10off        = new Image();               
           img10off.src   = "grfx/bn_nav_career_off.gif";
           
        	 img11on       = new Image();              
           img11on.src   = "grfx/bn_nav_faq_on.gif";
           img11off        = new Image();               
           img11off.src   = "grfx/bn_nav_faq_off.gif";       
		   
		   }
		   	   
//Function to replace 'off' image with 'on' image and populate the description
           // Replace the off image with the on image and populate center graphic
           function imgOn(imgName) {
           if (br== "n3") {
               document[imgName].src = eval(imgName+"on.src");
              //document["desc"].src = eval(imgName+"des.src");
              }
           }

//Function to replace 'off' image with 'on' image and populate the description
// Replace the on image with the off image, leave center graphic alone
           function imgOff(imgName) {
           if (br== "n3") {
              document[imgName].src = eval(imgName+"off.src");
			  }
	    	}

			
// Remove the IE link border
function noFocus(objLink) {
	objLink.blur();
}			
