 function checkCheckBox(f){

      if (f.agree.checked == false ) 
         {
         alert("DFWMGRR reserves the right to refuse to place any dog in any home for any reason. To show that you have read and understand this statement, please place a check in the appropriate box on the Application Form.");
         return false;
         }
      if (thisForm.ApplicantName.value == "")
          {
            alert("We can not accept an application without your name.");
            return false;
          }

      if (thisForm.Street.value == "") 
          {
            alert("We can not accept an application without your address.");
            return false;
          }

      if (thisForm.DayPhone.value == "")
          {
            alert("We need a phone number where we can reach you.");
            return false;
          }

      if(thisForm.Email.value == "") 
          {
           theForm.Email.value = "Info@RescueGoldens.org"
           }
        return true;
     }
     

 function validateVolunteerApplication(theForm) 
     {
      if (theForm.FirstName.value == "")
          {
            alert("We can not accept an application without your name.");
            return false;
          }

      if (theForm.LastName.value == "")
          {
            alert("We can not accept an application without your name.");
            return false;
          }
      if (theForm.Street.value == "") 
          {
            alert("We can not accept an application without your address.");
            return false;
          }

      if (theForm.HomePhone.value == "")
          {
            alert("We need a phone number where we can reach you.");
            return false;
          }

      if(theForm.Email.value == "") 
          {
           theForm.Email.value = "Info@RescueGoldens.org"
           }
        return true;
     }

 
 function validateApplication(theForm) 
      {
       if (theForm.ApplicantName.value == "")
           {
             alert("We can not accept an application without your name.");
             return false;
           }
 
       if (theForm.Street.value == "") 
           {
             alert("We can not accept an application without your address.");
             return false;
           }
 
       if (theForm.DayPhone.value == "")
           {
             alert("We need a phone number where we can reach you.");
             return false;
           }
 
       if(theForm.Email.value == "") 
           {
            theForm.Email.value = "Info@RescueGoldens.org"
            }
         return true;
     }