<!--
function send_form1(){var msg="The following fields are mandatory:\n";if(document.form1.name.value==""){msg+="- Your Name\n";}if(document.form1.address.value==""){msg+="- Address\n";}if(document.form1.telephone.value==""){msg+="- Telephone\n";}if(document.form1.email.value==""){msg+="- Email\n";}if(document.form1.email.value!=""){var val=document.form1.email.value;var p=val.indexOf('@');if (p<1 || p==(val.length-1)) {msg+="- Your Email field must contain an e-mail address\n";} }if(document.form1.model.value==""){msg+="- Model\n";}if(document.form1.serial.value==""){msg+="- Serial\n";}if(document.form1.purchase_date.value==""){msg+="- Date Purchased\n";}if(document.form1.dealer_name.value==""){msg+="- Dealer Name\n";}if(document.form1.dealer_address.value==""){msg+="- Dealer Address\n";}if(!document.form1.warranty.checked){msg+="- Warranty T&C must be checked\n";}if(msg=="The following fields are mandatory:\n"){document.form1.submit();}else{alert(msg);}}function isInteger(n) {return (!isNaN(n)) && (Math.floor(n)==n)}function send_form_sign_up(){var msg="Errors:\n";if(document.form_sign_up.name.value==""){msg+="- Your Name cannot be empty\n";}if(document.form_sign_up.telephone.value==""){msg+="- Your Telephone cannot be empty\n";}if (!isInteger(document.form_sign_up.telephone.value)){msg+="- Your Telephone must have only numerals\n";}if(document.form_sign_up.email.value==""){msg+="- Your Email cannot be empty\n";}if(document.form_sign_up.email.value!=""){var val=document.form_sign_up.email.value;var p=val.indexOf('@');if (p<1 || p==(val.length-1)) {msg+="- Your Email field must contain an e-mail address\n";} }if(document.form_sign_up.enquiry.value==""){msg+="- Your Enquiry cannot be empty\n";}if(msg=="Errors:\n"){document.form_sign_up.submit();}else{alert(msg);}}


//-->