<!--

function validateContact(frm)
{
    
     if (!checkString(frm.fullname, "Your Name", false)){
     return false;}
     
     if (!checkString(frm.enquiry, "Enquiry", false)){
     return false;}     
     
     if (!checkTelephoneNumber(frm.telno, "Telephone Number", false)){
     return false;}          
          
     if (!checkSelect(frm.how, "How you found us")){
     return false;}     
            
     frm.submit();
    
   }

//-->