// Rollover Scriptfunction swapImage(imageID, imagePath) {	var imgID;	imgID = document.getElementById(imageID);	imgID.src = imagePath;}function reveal1() {  if( !one.style.display || one.style.display == "none" ) 	{		one.style.display = "block";		two.style.display = "none";		three.style.display = "none";		four.style.display = "none";		five.style.display = "none";		six.style.display = "none";    } }function reveal2() {  if( !two.style.display || two.style.display == "none" ) 	{		one.style.display = "none";		two.style.display = "block";		three.style.display = "none";		four.style.display = "none";		five.style.display = "none";		six.style.display = "none";    } }function reveal3() {  if( !three.style.display || three.style.display == "none" ) 	{		one.style.display = "none";		two.style.display = "none";		three.style.display = "block";		four.style.display = "none";		five.style.display = "none";		six.style.display = "none";    } }function reveal4() {  if( !four.style.display || four.style.display == "none" ) 	{		one.style.display = "none";		two.style.display = "none";		three.style.display = "none";		four.style.display = "block";		five.style.display = "none";		six.style.display = "none";    } }function reveal5() {  if( !five.style.display || five.style.display == "none" ) 	{		one.style.display = "none";		two.style.display = "none";		three.style.display = "none";		four.style.display = "none";		five.style.display = "block";		six.style.display = "none";    } }function reveal6() {  if( !six.style.display || six.style.display == "none" ) 	{		one.style.display = "none";		two.style.display = "none";		three.style.display = "none";		four.style.display = "none";		five.style.display = "none";		six.style.display = "block";    } }function closeAll() {	one.style.display = "none";	two.style.display = "none";	three.style.display = "none";	four.style.display = "none";	five.style.display = "none";	six.style.display = "none";}//Random homepage bannersvar banners = new Array();	banners[0] = "<img src=\"images/home/banners/1.jpg\" alt=\"\" />";	banners[1] = "<img src=\"images/home/banners/2.jpg\" alt=\"\" />";	banners[2] = "<img src=\"images/home/banners/3.jpg\" alt=\"\" />";	banners[3] = "<img src=\"images/home/banners/4.jpg\" alt=\"\" />";var n = 3;var Chg = Math.round(Math.random() * n);var randomImg = banners[Chg];//Send email form var emailpage = null;function sendPage(url) {	emailpage = window.open ('','emailthispage','height=450,width=640,scrollbars=1,resizeable=0,toolbar=0,location=0');	if (emailpage  != null) {    	emailpage .location.href = url;    	if (window.focus) {	       emailpage .focus();    	}	  }	}function gotoApp(appurl) {        apppage = window.open (appurl, 'applicationpage', 'height=600, width=800, resizable=yes, scrollbars=1,  toolbar=0, location=0');}	function emailUpdates(emailurl) {	updatepage = window.open (emailurl,'emailupdate','height=450,width=600,scrollbars=1,resizable=1,toolbar=0,location=0');	}