{  
 imgsrc1on= new Image;
 imgsrc1on.src="images/Home2.gif";
 imgsrc2on= new Image; imgsrc2on.src="images/Specs2.gif";
 imgsrc3on= new Image;
 imgsrc3on.src="images/kit2.gif";
 imgsrc4on= new Image;
 imgsrc4on.src="images/faq2.gif";
 imgsrc5on= new Image;
 imgsrc5on.src="images/Photos2.gif";
 imgsrc6on= new Image;
 imgsrc6on.src="images/Links2.gif"; 		
 imgsrc1off= new Image;
 imgsrc1off.src="images/Home1.gif";
 imgsrc2off= new Image; imgsrc2off.src="images/Specs1.gif";
 imgsrc3off= new Image;
 imgsrc3off.src="images/kit1.gif";
 imgsrc4off= new Image;
 imgsrc4off.src="images/faq1.gif";
 imgsrc5off= new Image;
 imgsrc5off.src="images/Photos1.gif";
 imgsrc6off= new Image;
 imgsrc6off.src="images/Links1.gif"; 
}
function ButtonModeON(imgName)
{	
	imgOn=eval(imgName + "on.src");	
	document.images[imgName].src= imgOn;	
}
function ButtonModeOFF(imgName)
{
	imgOff=eval(imgName + "off.src");
	document.images[imgName].src= imgOff;	
}
function openNewWindow(lsHTMLFile,iWidth,iHeight) 
{	
	windowName = new String(Math.round(Math.random() * 100000));			
	winobj = window.open(lsHTMLFile,windowName,"toolbar=0,location=0,directories=0,status=1,scrollbars=1,top=0,left=0,resizable=1,width="+iWidth+",height="+iHeight);		
	winobj.focus();
}
function ValidEmail(item) 
{
var objRegExp  = /(^[a-z]([a-z_\.]*)@([a-z_\.]*)([.][a-z]{3})$)|(^[a-z]([a-z_\.]*)@([a-z_\.]*)(\.[a-z]{3})(\.[a-z]{2})*$)/i; 
  if(objRegExp.test(item))
	{
		return true;
	}
	else
	{
		alert("Please enter a Valid Email Address");
		return false;
	}					
} 	