<!--
// 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";

// Create image objects, preload all active and inactive images. 
    if (br== "n3") {


// ### BEGIN DISPLAY SCRIPT IMAGES ### 
	nav1on = new Image(); 
	nav1on.src = "images/nav/banner_on_01.jpg";
   	nav1off = new Image(); 
   	nav1off.src = "images/nav/banner_01.jpg";
	nav1pick = new Image(); 
	nav1pick.src = "images/nav/banner_on_01.jpg";

	nav2on = new Image(); 
	nav2on.src = "images/nav/banner_on_02.jpg";
   	nav2off = new Image(); 
   	nav2off.src = "images/nav/banner_02.jpg";
	nav2pick = new Image(); 
	nav2pick.src = "images/nav/banner_on_02.jpg";

	nav3on = new Image(); 
	nav3on.src = "images/nav/banner_on_03.jpg";
   	nav3off = new Image(); 
   	nav3off.src = "images/nav/banner_03.jpg";
	nav3pick = new Image(); 
	nav3pick.src = "images/nav/banner_on_03.jpg";   	

	nav4on = new Image(); 
	nav4on.src = "images/nav/banner_on_04.jpg";
   	nav4off = new Image(); 
   	nav4off.src = "images/nav/banner_04.jpg";

	nav5on = new Image(); 
	nav5on.src = "images/nav/banner_on_05.jpg";
   	nav5off = new Image(); 
   	nav5off.src = "images/nav/banner_05.jpg";

	nav6on = new Image(); 
	nav6on.src = "images/nav/banner_on_06.jpg";
   	nav6off = new Image(); 
   	nav6off.src = "images/nav/banner_06.jpg";   
   	
	nav7on = new Image(); 
	nav7on.src = "images/nav/banner_on_07.jpg";
   	nav7off = new Image(); 
   	nav7off.src = "images/nav/banner_07.jpg";   
   	
	nav8on = new Image(); 
	nav8on.src = "images/nav/banner_on_08.jpg";
   	nav8off = new Image(); 
   	nav8off.src = "images/nav/banner_08.jpg";   	   	   	   		

	button1on = new Image(); 
	button1on.src = "images/b_home_services_on.jpg";
   	button1off = new Image(); 
   	button1off.src = "images/b_home_services.jpg";
   	
	button2on = new Image(); 
	button2on.src = "images/b_home_faqs_on.jpg";
   	button2off = new Image(); 
   	button2off.src = "images/b_home_faqs.jpg";
   	
	button3on = new Image(); 
	button3on.src = "images/b_home_facilities_on.jpg";
   	button3off = new Image(); 
   	button3off.src = "images/b_home_facilities.jpg";   	
   	
	loc1on = new Image(); 
	loc1on.src = "images/b_facilities_map_on.gif";
   	loc1off = new Image(); 
   	loc1off.src = "images/b_facilities_map.gif";   	
   	
	loc2on = new Image(); 
	loc2on.src = "images/b_facilities_inquire_on.gif";
   	loc2off = new Image(); 
   	loc2off.src = "images/b_facilities_inquire.gif";   
   	
   	loc3on = new Image(); 
	loc3on.src = "images/b_facilities_gallery_on.gif";
   	loc3off = new Image(); 
   	loc3off.src = "images/b_facilities_gallery.gif";   


// ### END DISPLAY SCRIPT IMAGES ### 
    }

// Function to "activate" images.
function imgAct(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "on.src");
    }
}

// Function to "deactivate" images.
function imgInact(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "off.src");
    }
}


function mouseovertr (o){
	o.style.backgroundColor= "#C0C0C0";
	o.style.cursor="hand";	
}

function mouseouttr(o){
	o.style.backgroundColor="#E0E0E0"

}

function mouseovertd (o){
	o.style.borderStyle="solid"
	o.style.borderColor="#ffffff"
	o.style.color="#C0C0C0"	
}

function mouseouttd (o){
	o.style.color="#C0C0C0"
	o.style.borderColor="#E0E0E0"
}

function clearDefault(el) {
	if (el.defaultValue==el.value) el.value = ""
}	

// -->
