<!--

function validatecontact(frm)
{

     if (!checkString(frm.contactname, "Contact Name", false)){
     return false;}

     if (!checkString(frm.email, "Email Address", false)){
     return false;}   
     
     if (!checkTelephoneNumber(frm.telno, "Telephone Number", false)){
     return false;}   
     
     if (!checkSelect(frm.how, "How Did you Find us")){
     return false;}
	   
     if (!checkString(frm.enquiry, "Enquiry", false)){
     return false;}   
     
     frm.submit();
    
   }

//-->
