
function divMouseOverOut(id,imageURL)
{
	//alert(document.getElementById(inElement));
	//document.getElementById(inElement).style.backgroundImage=inFile;
	
	if (document.layers)
	    document[id].background.src = imageURL == 'none' ? null : imageURL;
	else if (document.all)
	    document.all[id].style.backgroundImage = imageURL == 'none' ? 'none' : 'url(' + imageURL + ')';
	else if (document.getElementById)
	    document.getElementById(id).style.backgroundImage = imageURL == 'none' ? 'none' : 'url(' + imageURL + ')';	
}

function isValidEmail(inEmail)
{

var reg_email = /^[\-\.\_\&0-9a-zA-Z]+[@][\-\.\_\&0-9a-zA-Z]+[\.][\.\_0-9a-zA-Z]{1,}$/;
if (reg_email.exec(inEmail.value) == null ) 
{
	return false;		
}
return true;

}
