<!--
function validateForm(frm)
{
    // http://www.mcfedries.com/JavaScript/mandatory.asp
//
// Check the Name field to see if any characters were entered
    if (frm.Name.value.length == 0)
    {
        alert("Please enter your name.");
        frm.Name.focus();
        return false;
    }
//
// Check the Address field to see if any characters were entered
    if (frm.Address.value.length == 0)
    {
        alert("Please enter your street address.");
        frm.Address.focus();
        return false;
    }
//
// Check the City field to see if any characters were entered
    if (frm.City.value.length == 0)
    {
        alert("Please enter your city.");
        frm.City.focus();
        return false;
    }
//
// Check the State field to see if any characters were entered
    if (frm.State.value.length == 0)
    {
        alert("Please enter your state.");
        frm.State.focus();
        return false;
    }
//
// Check the ZIP field to see if any characters were entered
    if (frm.ZIP.value.length == 0)
    {
        alert("Please enter your ZIP code.");
        frm.ZIP.focus();
        return false;
    }
// Check the Email field to see if any characters were entered
    if (frm.Email.value.length == 0)
    {
        alert("Please enter your e-mail address.");
        frm.Email.focus();
        return false;
    }
//
// Now check the Email field for the "@" symbol
    if (frm.Email.value.indexOf("@") == -1)
    {
        alert("Please enter a valid e-mail address.");
        frm.Email.focus();
        return false;
    }
//
// Display success message
	alert("Thank you for requesting a copy of '8 Factors That Cause Students to Struggle'." + '\n' + "You should receive your copy in 7 – 10 days.");
}
//-->

