// JavaScript Document
<!-- Begin
function verify() {
var themessage = "You are required to complete the following fields: ";
if (document.form1.name.value=="") {
themessage = themessage + " - Name";
}
if (document.form1.visitormail.value=="") {
themessage = themessage + " -  Email Address";
}
if (document.form1.address.value=="") {
themessage = themessage + " -  Address";
}
if (document.form1.town.value=="") {
themessage = themessage + " -  Town";
}
if (document.form1.county.value=="") {
themessage = themessage + " -  County";
}
if (document.form1.postcode.value=="") {
themessage = themessage + " -  Postcode";
}
if (document.form1.telephone.value=="") {
themessage = themessage + " -  Telephone";
}
if (document.form1.visitormail.value=="") {
themessage = themessage + " -  Mobile";
}
if (document.form1.enquiry.value=="") {
themessage = themessage + " -  Please tick the box";
}
//alert if fields are empty and cancel form submit
if (themessage == "You are required to complete the following fields: ") {
document.form1.submit();
}
else {
alert(themessage);
return false;
   }
}
//  End -->