<!-- JavaScript Form Validation ... by: OneMadEye -->
<!--
function check_all(form) {

        if (form.name.value == "") {
                alert("Please type your NAME before submitting this form!");
                form.name.focus();
                return false;
        }

        if (form.city.value == "") {
                alert("Please type your CITY before submitting this form!");
                form.city.focus();
                return false;
        }

        if (form.state.value == "") {
                alert("Please type your STATE before submitting this form!");
                form.state.focus();
                return false;
        }

        if (form.zipcode.value == "") {
                alert("Please type your ZIP CODE before submitting this form!");
                form.zipcode.focus();
                return false;
        }

        if (form.email.value == "") {
                alert("Please type your EMAIL ADDRESS before submitting this form!");
                form.email.focus();
                return false;
        }

        if (form.comments.value == "") {
                alert("Please type your COMMENTS before submitting this form!");
                form.comments.focus();
                return false;
        }
}

-->