function verify() {
var themessage = "Please complete the following field: ";
if (document.ForgottenForm.Email.value=="") {
themessage = themessage + " - Email Address";
}
if (themessage == "Please complete the following field: ") {
document.ForgottenForm.submit();
}
else {
alert(themessage);
return false;
   }
}
