
function submitForms() {if ( isFname() && isEmail()&& isComment())
if (confirm("\n You are about to submit your information. \n\nYES to submit.    NO to abort.")){alert("\n Your submission will now be sent!");
return true;
}
else
{
alert("\n You have chosen to abort the submission.");
return false
}
else 
return false;
}
function isFname() {
if (document.c.Name.value == "") {
alert ("\n The First Name field is blank. \n\n Please enter your first name.")
document.c.Name.focus();
return false;
}
return true;
}
function isEmail() {
if (document.c.Email.value == "") {
alert ("\n The E-Mail field is blank. \n\n Please enter your E-Mail address.")
document.c.Email.focus();
return false;
}
if (document.c.Email.value.indexOf ('@',0) == -1 ||
document.c.Email.value.indexOf ('.',0) == -1) {
alert ("\n The E-Mail field requires a \"@\" and a \".\"be used. \n\nPlease re-enter your E-Mail address.")
document.c.Email.select();
document.c.Email.focus();
return false;
}
return true;
}
function isComment() {
if (document.c.Message.value == "") {
alert ("\n The Comments field is blank. \n\nPlease enter your Comments:.")
document.c.Message.focus();
return false;
}
return true;
}

// End -->
