function formCheck() 
   {
       if (document.SubmitForm.Company_Name.value == "") 
       {
       alert("You have failed to complete the required contact information.  Please enter the name of your company or organization.");
       return false;
       }
       if (document.SubmitForm.Contact_Name.value == "") 
       {
       alert("You have failed to complete the required contact information.  Please enter the name of the individual that you would like us to get in contact with.");
       return false;
       }
       if (document.SubmitForm.Email.value.indexOf("@") == -1 ||
           document.SubmitForm.Email.value == "") 
       {
       alert("You have failed to complete the required contact information.  Please enter a valid e-mail address.");
       return false;
       }
       if (document.SubmitForm.Phone_Number.value == "") 
       {
       alert("You have failed to complete the required contact information.  Please enter a valid phone number for the individual named in the contact field.");
       return false;
       }
       
}