function verify() {


    if (document.form.name.value=="" || document.form.phone.value=="" 
        || document.form.email2.value=="" || document.form.dateneeded.value=="") {
            alert("You must fill all of the following contact information fields: Name, Phone, Date Needed and E-mail");
            return false;
    } else {
        document.form.submit();
    }


}