<!--

function validateOrderDomain(frm)
{

     if (!checkString(frm.contactname, "Contact Name", false)){
     return false;}

     if (!checkString(frm.address1, "Street", false)){
     return false;}   
     
     if (!checkString(frm.address3, "Town", false)){
     return false;}   
     
     if (!checkString(frm.address4, "County", false)){
     return false;}
	   
     if (!checkPostcode(frm.postcode, "Post code", false)){
     return false;} 
     
     if (!checkEmail(frm.contactemail, "Email", false)){
     return false;}     
     
     if (!checkTelephoneNumber(frm.contacttelno, "Telephone Number")){
     return false;}
     
     if (!checkCheckbox(frm.terms, "Terms & Conditions", false)){
     return false;}       
         
     frm.submit();
    
   }

//-->