<!-- Original:  Wayne Nolting (w.nolting@home.com) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function verify2() {
var themessage = "You are required to complete the following fields: ";
if (document.form2.name.value=="") {
themessage = themessage + " - Name";
}
if (document.form2.phone.value=="") {
themessage = themessage + " -  Phone";
}
if (document.form2.email.value=="") {
themessage = themessage + " -  E-mail";
}
//alert if fields are empty and cancel form submit
if (themessage == "You are required to complete the following fields: ") {
document.form2.submit();
}
else {
alert(themessage);
return false;
   }
}
//  End -->