function verify() {
var themessage = "You are required to complete the following fields: ";
if (document.form.Name.value=="") {
themessage = themessage + " - Your Name";
}
if (document.form.Email.value=="") {
themessage = themessage + " -  Email Address";
}
if (document.form.Comments.value=="") {
themessage = themessage + " -  Comments or Feedback";
}
//alert if fields are empty and cancel form submit
if (themessage == "You are required to complete the following fields: ") {
document.form.submit();
}
else {
alert(themessage);
return false;
   }
}
