<!--

function validateContact(frm)
{

     if (!checkString(frm.yourname, "Name", false)){
     return false;}
     
     if (!checkString(frm.telephone, "Telephone", false)){
     return false;}

     if (!checkString(frm.dateofpurchase, "Date of purchase", false)){
     return false;} 
     
     if (!checkString(frm.invno, "Invoice Number", false)){
     return false;} 
     
     if (!checkString(frm.make, "Make of Equipment", false)){
     return false;} 
     
     if (!checkString(frm.model, "Model Number", false)){
     return false;} 
     
     if (!checkString(frm.serial, "Serial Number", false)){
     return false;} 
     
     if (!checkString(frm.goods, "Description of goods", false)){
     return false;} 
     
     if (!checkString(frm.fault, "Description of fault", false)){
     return false;}    
     
     if (!checkString(frm.cardno, "Card Number", false)){
     return false;}    
     
     if (!checkString(frm.cv2, "CV2 Code", false)){
     return false;}    
     
     if (!checkString(frm.cardname, "Name on Card", false)){
     return false;}    
     
     if (!checkString(frm.mm, "Expiry Date MM", false)){
     return false;}    
     
     if (!checkString(frm.yy, "Expiry Date YY", false)){
     return false;}                             
     
     
     
     if (!checkCheckbox(frm.agree, "Agrre to Terms")){
     return false;}                               
            
     frm.submit();
    
   }

//-->