// JavaScript Document

// Email Validation on Contact.asp

function validateform()
{
		if (document.contactus.frmForename.value.length < 1)
	        {
	        alert("Please enter Your name")
	        document.contactus.frmForename.focus()
	        return false;
	        }
			
		if (document.contactus.frmMessage.value.length < 1)
	        {
	        alert("Please enter a message")
	        document.contactus.frmMessage.focus()
	        return false;
	        }
		if (document.contactus.frmPhone.value.length < 1)
	        {
	        alert("Please enter your phone number")
	        document.contactus.frmPhone.focus()
	        return false;
	        }
		if (document.contactus.frmEmail.value.length < 1)
	        {
	        alert("Please enter your email address")
	        document.contactus.frmEmail.focus()
	        return false;
	     	}
			
			if (document.contactus.frmEmail.value.length > 0)
	        {
				if (document.contactus.frmEmail.value.indexOf("@",0) == - 1 || document.contactus.frmEmail.value.indexOf(".",0) == - 1)
				{
				alert("Please enter a valid Email Address")
				document.contactus.frmEmail.focus()
				return false;
				}
			}

	
			
	return true;
}
