function submitForms() {

if (isContact_Name() && isemail() && issubject()  && isQuestion()) {
return true;
}
else
{
//alert("\n You have chosen to abort the submission.");
return false;
}
return true;
}

function isContact_Name() {
if (document.form1.name.value == "" ) {
alert ("\n The  Contact Name field is blank. \n\n Please input to your Contact Name.")
document.form1.name.focus();
return false;
}
return true;
}

function isQuestion() {
if (document.form1.question.value == "" ) {
alert ("\n The  Question field is blank. \n\n Please input to your Question.")
document.form1.question.focus();
return false;
}
return true;
}

function isemail() {

if (document.form1.email.value == "") {

alert ("\n The E-Mail field is blank. \n\n Please enter your E-Mail address.")

document.form1.email.focus();

return false;

}

if (document.form1.email.value.indexOf ('@',0) == -1 ||

document.form1.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.form1.email.select();

document.form1.email.focus();

return false;

}

return true;

}


function issubject() {
if (document.form1.subject.value == "" ) {
alert ("\n The  Phone Number field is blank. \n\n Please input your Phone Number.")
document.form1.subject.focus();
return false;
}
return true;
}