<!--
function submitForms() {

if (isContact_Name() && isemail() && isdescription()) {
return true;
}
else
{
//alert("\n You have chosen to abort the submission.");
return false;
}
return true;
}

function isContact_Name() {
if (document.form1.Contact_Name.value == "" ) {
alert ("\n The  Contact Name field is blank. \n\n Please input to your Contact Name.")
document.form1.Contact_Name.focus();
return false;
}
return true;
}

function isemail() {
if (document.form1.Email_address.value == "") {
alert ("\n The E-Mail field is blank. \n\n Please enter your E-Mail address.")
document.form1.Email_address.focus();

return false;
}
if (document.form1.Email_address.value.indexOf ('@',0) == -1 ||
document.form1.Email_address.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_address.select();
document.form1.Email_address.focus();
return false;
}
return true;
}

function isdescription() {
if (document.form1.description.value == "" ) {
alert ("\n The Description field is blank. \n\n Please explain me your deal.")
document.form1.description.focus();
return false;
}
return true;
}
// End -->