
function validation()
{
	
if (window.document.contactfrm.email.value.indexOf('.')=="-1" || window.document.contactfrm.email.value.indexOf('@')=="-1")
 {
 alert("Please enter your Your Email address!")
 window.document.contactfrm.email.focus();
 return false;
 }

	
}
