<!-- Begin
function verify() {
var themessage = "You are required to complete the following fields: ";
if (document.form.txtChurch.value=="") {
themessage = themessage + " - Church";
}
if (document.form.txtEmail.value=="") {
themessage = themessage + " -  Email";
}
if (document.form.txtName.value=="") {
themessage = themessage + " -  First and Last Name";
}
//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;
   }
}
//  End -->