<!--
function checkFields() {
    var str = "";
    if (!document.form.Email_Address.value.match(/^\w+((-\w+)|(\.\w+))*\@\w+((\.|-)\w+)*\.\w+$/)) {
        str += "You must enter a valid email address.\n";
    }
    if (document.form.First_Name.value == "") {
        str += "You must enter your first name.\n";
    }
    if (document.form.Last_Name.value == "") {
        str += "You must enter your last name.\n";
    }
    if (document.form.Street_Address_Line_1.value == "") {
        str += "You must enter your address.\n";
    }
    if (document.form.City.value == "") {
        str += "You must enter your city.\n";
    }
    if (document.form.US_State.value == "") {
        str += "You must select your state.\n";
    }
    if (document.form.Zip_Code.value == "") {
        str += "You must enter your zip code.\n";
    }
    if (document.form.Home_Phone.value == "") {
        str += "You must enter your phone number.\n";
    }
    if (str == "") {
        return true;
    } else {
        window.alert("The following errors have occured:\n"+str);
        return false;
    }
}
// -->
