<!--

function validateContact(frm)
{

     if (!checkSelect(frm.title, "Title")){
     return false;}

     if (!checkString(frm.yourname, "Name", false)){
     return false;}
     
     if (!checkEmail(frm.email, "Email", false)){
     return false;}
     
     if (!checkSelect(frm.how, "How did you find us")){
     return false;}     
     
     if (!checkString(frm.Enquiry, "Enquiry", false)){
     return false;}     
            
     frm.submit();
    
   }

//-->
