<!--
function verify() {
var themessage = "You are required to complete the following fields: ";
if (document.contact.Name.value=="") {
themessage = themessage + " - Name";
}
if (document.contact.Eddress.value.indexOf("@") == -1) {
themessage = themessage + " - Valid Email Address";  
}
if (document.contact.Submitted.value=="") {
themessage = themessage + " - Feedback";
}
//alert if fields are empty and cancel form submit
if (themessage == "You are required to complete the following fields: ") {
document.contact.submit();
}
else {
alert(themessage);
return false;
  }
}
//-->