<!--  Begin
function resetform() {
document.forms[0].elements[1]=="";
}
function submitForms() {
if (isEmail() && isFname() && isLname() && isTitle() && isOrg() && isAddress1() && isAddress2() && isCity() && isState() && isCountry()&& isZip() && isPhone())
if (confirm("\n You are about to use your e-mail application to send this request. \n\nOK to submit.    Cancel to abort."))
{
alert("\nYour request will be e-mailed now. \n\nThank you for submitting your request!");
return true;
}
else
{
alert("\n You have chosen to abort the submission.");
return false
}
else 
return false;
}
function isEmail() {
if (document.forms[0].elements[1].value == "") {
alert ("\n The E-Mail field is blank. \n\n Please enter your E-Mail address.")
document.forms[0].elements[1].focus();
return false;
}
if (document.forms[0].elements[1].value.indexOf ('@',0) == -1 ||
document.forms[0].elements[1].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.forms[0].elements[1].select();
document.forms[0].elements[1].focus();
return false;
}
return true;
}
function isFname() {
if (document.forms[0].elements[2].value == "")
{
alert ("\n The First Name field is blank. \n\n Please enter your First Name.")
document.forms[0].elements[2].focus();
return false;
}
return true;
}
function isLname() {
if (document.forms[0].elements[3].value == "") {
alert ("\n The Last Name field is blank. \n\nPlease enter your Last Name.")
document.forms[0].elements[3].focus();
return false;
}
return true;
}
function isTitle() {
if (document.forms[0].elements[4].value == "") {
alert ("\n The Title field is blank. \n\n Please enter your Title.")
document.forms[0].elements[4].focus();
return false;
}
return true;
}
function isOrg() {
if (document.forms[0].elements[5].value == "") {
alert ("\n The Organization field is blank.\n\nPlease enter your Company or Organization.")
document.forms[0].elements[5].focus();
return false;
}
return true;
}
function isAddress1() {
if (document.forms[0].elements[6].value == "") {
alert ("\n The Address 1 field is blank. \n\nPlease enter your Address 1 information.")
document.forms[0].elements[6].focus();
return false;
}
return true;
}
function isAddress2() {
if (document.forms[0].elements[7].value == "") {
alert ("\n The Address 2 field is blank. \n\nPlease enter your Address 2 information. If not needed, enter NA.")
document.forms[0].elements[7].focus();
return false;
}
return true;
}
function isCity()
{
if (document.forms[0].elements[8].value == "") {
alert ("\n The City field is blank. \n\nPlease enter your City.")
document.forms[0].elements[8].focus();
return false;
}
return true;
}
function isState() {
if (document.forms[0].elements[9].value == "") {
alert ("\n The State/Province is not selected.\n\nPlease select your State or Province.")
document.forms[0].elements[9].focus();
return false;
}
return true;
}
function isCountry() {
if (document.forms[0].elements[11].value == "") {
alert ("\n The Country is not selected.\n\nPlease select your Country.")
document.forms[0].elements[11].focus();
return false;
}
return true;
}
function isZip() {
if (document.forms[0].elements[13].value == "") {
alert ("\n The Zip field is blank.\n\nPlease enter your Zip or Postal code.")
document.forms[0].elements[13].focus();
return false;
}
return true;
}
function isPhone() {
if (document.forms[0].elements[14].value == "") {
alert ("\n The Phone Number field is blank.\n\nPlease enter your Phone Number.")
document.forms[0].elements[14].focus();
return false;
}
return true;
}
// End -->
