<!--

function validateContact(frm)
{

     if (!checkSelect(frm.title, "Title")){
     return false;}
     
     if (!checkString(frm.initial, "Your Initial", false)){
     return false;}     
     
     if (!checkString(frm.fullname, "Your Name", false)){
     return false;}
     
     if (!checkString(frm.address, "1st Line of Address", false)){
     return false;}     
     
     if (!checkString(frm.address2, "2nd Line of Address", false)){
     return false;}      
     
     if (!checkString(frm.town, "Town", false)){
     return false;}          
     
     if (!checkPostcode(frm.postcode, "Post Code", false)){
     return false;} 
     
     if (!checkString(frm.enquiry, "Enquiry", false)){
     return false;}      
     
     if (!checkSelect(frm.how, "How you found us")){
     return false;}     
            
     frm.submit();
    
   }

//-->