function TheFormCheck() {
if (document.enquiry.Name.value=="") 
{
alert("Please provide contact name");
document.enquiry.Name.focus();return false
}

if (document.enquiry.Email.value=="") 
{
alert("Please provide contact Valid Email Address");
document.enquiry.Email.focus();return false
}

if (document.enquiry.Email.value!="") 
{if (document.enquiry.Email.value.indexOf("@")==-1 || document.enquiry.Email.value.indexOf(".")==-1 || document.enquiry.Email.value.length<6) 
{alert("Sorry, your email address is invalid.");
document.enquiry.Email.focus();return false}
}


}

