<!--


/* FORM VERIFICATION FUNCTION */

function checkForm(theform) {
if (theform.name.value=="") {
alert("Please add your name");
theform.name.focus();
return false;
}
if (theform.addressline1.value=="") {
alert("Please add the first line of your address");
theform.addressline1.focus();
return false;
}
if (theform.postcode.value=="") {
alert("Please add your postcode");
theform.postcode.focus();
return false;
}
if (theform.telephone.value=="") {
alert("Please add your telephone number");
theform.telephone.focus();
return false;
}
if (theform.email.value=="") {
alert("Please add your email address");
theform.email.focus();
return false;
}
if (theform.email.value.indexOf("@") == -1) {
alert("Please enter a valid email address");
theform.email.focus();
return false;
}    
if (theform.email.value.indexOf(".") == -1) {
alert("Please enter a valid email address");
theform.email.focus();
return false;
}
return true;
}


//-->
