function validateEmail(address) {
  var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
  if(reg.test(address) == false)
    return false;
  return true;
}

function checkContactForm() {
  if(document.getElementById('first_name').value == '') {
    alert('Please enter your first name.');
    document.getElementById('first_name').select();
    return false;
  }
  if(document.getElementById('last_name').value == '') {
    alert('Please enter your last name.');
    document.getElementById('last_name').select();
    return false;
  }
  if(document.getElementById('address').value == '') {
    alert('Please enter your address.');
    document.getElementById('address').select();
    return false;
  }
  if(document.getElementById('city').value == '') {
    alert('Please enter your city.');
    document.getElementById('city').select();
    return false;
  }
  if(document.getElementById('state').value == '') {
    alert('Please choose your state.');
    return false;
  }
  if(document.getElementById('zip_code').value == '') {
    alert('Please enter your zip code.');
    document.getElementById('zip_code').select();
    return false;
  }
  if(document.getElementById('phone_number').value == '') {
    alert('Please enter your phone number.');
    document.getElementById('phone_number').select();
    return false;
  }
  if(validateEmail(document.getElementById('email_address').value) == false) {
    alert('Please enter a valid email address.');
    document.getElementById('email_address').select();
    return false;
  }
  if(document.getElementById('comments').value == '') {
    alert('Please enter some comments.');
    document.getElementById('comments').select();
    return false;
  }
}

function checkAdoptionForm() {
  if(document.getElementById('first_name').value == '') {
    alert('Please enter your first name.');
    document.getElementById('first_name').select();
    return false;
  }
  if(document.getElementById('last_name').value == '') {
    alert('Please enter your last name.');
    document.getElementById('last_name').select();
    return false;
  }
  if(document.getElementById('address').value == '') {
    alert('Please enter your address.');
    document.getElementById('address').select();
    return false;
  }
  if(document.getElementById('city').value == '') {
    alert('Please enter your city.');
    document.getElementById('city').select();
    return false;
  }
  if(document.getElementById('state').value == '') {
    alert('Please choose your state.');
    return false;
  }
  if(document.getElementById('zip_code').value == '') {
    alert('Please enter your zip code.');
    document.getElementById('zip_code').select();
    return false;
  }
  if(document.getElementById('phone_number').value == '') {
    alert('Please enter your phone number.');
    document.getElementById('phone_number').select();
    return false;
  }
  if(validateEmail(document.getElementById('email_address').value) == false) {
    alert('Please enter a valid email address.');
    document.getElementById('email_address').select();
    return false;
  }
  if(document.getElementById('how_did_you_hear_about_us').value == '') {
    alert('Please indicate how you heard about us.');
    document.getElementById('how_did_you_hear_about_us').select();
    return false;
  }
  if(!document.getElementById('i_would_like_to_adopt-1').checked  &&  !document.getElementById('i_would_like_to_adopt-2').checked) {
    alert('Please indicate whether or not you wish to adopt.');
    return false;
  }
  if(!document.getElementById('i_would_like_help_with-1').checked  &&  !document.getElementById('i_would_like_help_with-2').checked  &&  !document.getElementById('i_would_like_help_with-3').checked  &&  !document.getElementById('i_would_like_help_with-4').checked  &&  !document.getElementById('i_would_like_help_with-5').checked  &&  !document.getElementById('i_would_like_help_with-6').checked) {
    alert('Please indicate what you would like to help with.');
    return false;
  }
  if(!document.getElementById('adoption_fostering_preferences-1').checked  &&  !document.getElementById('adoption_fostering_preferences-2').checked  &&  !document.getElementById('adoption_fostering_preferences-3').checked) {
    alert('Please indicate your adoption/fostering preferences.');
    return false;
  }
  if(!document.getElementById('age_preferences-1').checked  &&  !document.getElementById('age_preferences-2').checked  &&  !document.getElementById('age_preferences-3').checked  &&  !document.getElementById('age_preferences-4').checked) {
    alert('Please indicate your age preferences.');
    return false;
  }
  if(document.getElementById('why_do_you_want_a_great_pyrenees').value == '') {
    alert('Please explain why you want a Great Pyrenees.');
    document.getElementById('why_do_you_want_a_great_pyrenees').select();
    return false;
  }
  if(!document.getElementById('where_do_you_live-1').checked  &&  !document.getElementById('where_do_you_live-2').checked  &&  !document.getElementById('where_do_you_live-3').checked  &&  !document.getElementById('where_do_you_live-4').checked) {
    alert('Please indicate your living situation.');
    return false;
  }
  if(document.getElementById('are_you_aware_that_pyrs_bark_and_roam').value == '') {
    alert('Please indicate you are aware that Pyrs bark and roam if not secured.');
    return false;
  }
  if(!document.getElementById('i_own_the_following_equipment-1').checked  &&  !document.getElementById('i_own_the_following_equipment-2').checked  &&  !document.getElementById('i_own_the_following_equipment-3').checked  &&  !document.getElementById('i_own_the_following_equipment-4').checked  &&  !document.getElementById('i_own_the_following_equipment-5').checked  &&  !document.getElementById('i_own_the_following_equipment-6').checked) {
    alert('Please indicate the equipment you currently own.');
    return false;
  }
  if(document.getElementById('how_is_your_yard_secure').value == '') {
    alert('Please explain how your yard is secured.');
    document.getElementById('how_is_your_yard_secure').select();
    return false;
  }
  if(document.getElementById('where_will_the_dog_spend_the_day').value == '') {
    alert('Please explain where the dog will spend the day.');
    document.getElementById('where_will_the_dog_spend_the_day').select();
    return false;
  }
  if(document.getElementById('where_will_the_dog_sleep').value == '') {
    alert('Please explain where the dog will sleep.');
    document.getElementById('where_will_the_dog_sleep').select();
    return false;
  }
  if(document.getElementById('people_in_household').value == '') {
    alert('Please indicate how many people are in your household, along with their age.');
    document.getElementById('people_in_household').select();
    return false;
  }
  if(!document.getElementById('household_aware-1').checked  &&  !document.getElementById('household_aware-2').checked) {
    alert('Please indicate whether or not your household is aware that you wish to adopt/foster a Pyr.');
    return false;
  }
  if(!document.getElementById('household_support-1').checked  &&  !document.getElementById('household_support-2').checked) {
    alert('Please indicate whether or not your household supports your decision to adopt/foster a Pyr.');
    return false;
  }
  if(!document.getElementById('other_dogs-1').checked  &&  !document.getElementById('other_dogs-2').checked) {
    alert('Please indicate whether or not you own other dogs.');
    return false;
  }
  if((document.getElementById('other_dogs-1').checked  ||  document.getElementById('other_dogs-2').checked)  &&  document.getElementById('other_dogs_detail').value == '') {
    alert('Please provide information on the other dogs in your household, including age, sex and spay/neuter information.');
    return false;
  }
  if(!document.getElementById('do_you_use_heartworm_preventative-1').checked  &&  !document.getElementById('do_you_use_heartworm_preventative-2').checked) {
    alert('Please indicate whether or not you will use heartworm preventative.');
    return false;
  }
  if(document.getElementById('current_dogs_date_of_last_dosage').value == '') {
    alert('Please indicate the date of your dogs\' last dosage.');
    return false;
  }
  if(!document.getElementById('other_pets-1').checked  &&  !document.getElementById('other_pets-2').checked) {
    alert('Please indicate whether or not you own other pets.');
    return false;
  }
  if((document.getElementById('other_pets-1').checked  ||  document.getElementById('other_pets-2').checked)  &&  document.getElementById('other_pets_detail').value == '') {
    alert('Please provide information on the other pets in your household, including age and sex.');
    return false;
  }
  if(!document.getElementById('have_you_ever_owned_a_pyr-1').checked  &&  !document.getElementById('have_you_ever_owned_a_pyr-2').checked) {
    alert('Please indicate whether or not you have ever owned a Pyr before.');
    return false;
  }
  if((document.getElementById('have_you_ever_owned_a_pyr-1').checked  ||  document.getElementById('have_you_ever_owned_a_pyr-2').checked)  &&  document.getElementById('what_happened_to_it').value == '') {
    alert('Please indicate what happened to your previous Pyr.');
    return false;
  }
  if(!document.getElementById('have_you_ever_owned_other_dogs-1').checked  &&  !document.getElementById('have_you_ever_owned_other_dogs-2').checked) {
    alert('Please indicate whether or not you have ever owned another dog before.');
    return false;
  }
  if((document.getElementById('have_you_ever_owned_other_dogs-1').checked  ||  document.getElementById('have_you_ever_owned_other_dogs-2').checked)  &&  document.getElementById('what_happened_to_them').value == '') {
    alert('Please indicate what happened to your previous dog(s).');
    return false;
  }
  if(!document.getElementById('are_you_willing_to_travel-1').checked  &&  !document.getElementById('are_you_willing_to_travel-2').checked) {
    alert('Please indicate whether or not you are willing to travel to acquire a rescue dog.');
    return false;
  }
  if(!document.getElementById('are_you_willing_to_housebreak_a_dog-1').checked  &&  !document.getElementById('are_you_willing_to_housebreak_a_dog-2').checked) {
    alert('Please indicate whether or not you are willing to housebreak a dog.');
    return false;
  }
  if(!document.getElementById('have_you_applied_to_other_rescue_organizations-1').checked  &&  !document.getElementById('have_you_applied_to_other_rescue_organizations-2').checked) {
    alert('Please indicate whether or not you have applied to any other rescue organization(s).');
    return false;
  }
  if((document.getElementById('have_you_applied_to_other_rescue_organizations-1').checked  ||  document.getElementById('have_you_applied_to_other_rescue_organizations-2').checked)  &&  document.getElementById('other_organizations').value == '') {
    alert('Please provide information on other rescue organizations you have applied to.');
    return false;
  }
  if(document.getElementById('veterinarians_name').value == '') {
    alert('Please enter your current Veterinarian\'s name.');
    document.getElementById('veterinarians_name').select();
    return false;
  }
  if(document.getElementById('veterinarians_phone').value == '') {
    alert('Please enter your current Veterinarian\'s phone number.');
    document.getElementById('veterinarians_phone').select();
    return false;
  }
  if(document.getElementById('other_comments').value == '') {
    alert('Please enter any other comments/concerns.');
    document.getElementById('other_comments').select();
    return false;
  }
  return true;
}

function checkSurrenderForm() {
  if(document.getElementById('first_name').value == '') {
    alert('Please enter your first name.');
    document.getElementById('first_name').select();
    return false;
  }
  if(document.getElementById('last_name').value == '') {
    alert('Please enter your last name.');
    document.getElementById('last_name').select();
    return false;
  }
  if(document.getElementById('address').value == '') {
    alert('Please enter your address.');
    document.getElementById('address').select();
    return false;
  }
  if(document.getElementById('city').value == '') {
    alert('Please enter your city.');
    document.getElementById('city').select();
    return false;
  }
  if(document.getElementById('state').value == '') {
    alert('Please choose your state.');
    return false;
  }
  if(document.getElementById('zip_code').value == '') {
    alert('Please enter your zip code.');
    document.getElementById('zip_code').select();
    return false;
  }
  if(document.getElementById('phone_number').value == '') {
    alert('Please enter your phone number.');
    document.getElementById('phone_number').select();
    return false;
  }
  if(validateEmail(document.getElementById('email_address').value) == false) {
    alert('Please enter a valid email address.');
    document.getElementById('email_address').select();
    return false;
  }
  if(document.getElementById('how_did_you_hear_about_us').value == '') {
    alert('Please indicate how you heard about us.');
    document.getElementById('how_did_you_hear_about_us').select();
    return false;
  }
  if(document.getElementById('dogs_date_of_birth').value == '') {
    alert('Please enter your dog\'s date of birth.');
    document.getElementById('dogs_date_of_birth').select();
    return false;
  }
  if(document.getElementById('dogs_age').value == '') {
    alert('Please enter your dog\'s age.');
    document.getElementById('dogs_age').select();
    return false;
  }
  if(!document.getElementById('dogs_akc_papers-1').checked  &&  !document.getElementById('dogs_akc_papers-2').checked) {
    alert('Please indicate whether or not you have AKC Papers for your dog.');
    return false;
  }
  if(!document.getElementById('dogs_sex-1').checked  &&  !document.getElementById('dogs_sex-2').checked) {
    alert('Please indicate if your dog is Male/Female.');
    return false;
  }
  if(!document.getElementById('dogs_spayed_neutered-1').checked  &&  !document.getElementById('dogs_spayed_neutered-2').checked) {
    alert('Please indicate if your dog is spayed/neutered.');
    return false;
  }
  if((document.getElementById('dogs_spayed_neutered-1').checked  ||  document.getElementById('dogs_spayed_neutered-2').checked)  &&  document.getElementById('dogs_spayed_neutered_date').value == '') {
    alert('Please enter when your dog was spayed/neutered.');
    document.getElementById('dogs_spayed_neutered_date').select();
    return false;
  }
  if(!document.getElementById('dogs_tattoo-1').checked  &&  !document.getElementById('dogs_tattoo-2').checked) {
    alert('Please indicate if your dog has a tattoo.');
    return false;
  }
  if((document.getElementById('dogs_tattoo-1').checked  ||  document.getElementById('dogs_tattoo-2').checked)  &&  document.getElementById('dogs_tattoo_number').value == '') {
    alert('Please enter the dog\'s tattoo number.');
    document.getElementById('dogs_tattoo_number').select();
    return false;
  }
  if(!document.getElementById('dogs_microchipped-1').checked  &&  !document.getElementById('dogs_microchipped-2').checked) {
    alert('Please indicate if your dog is microchipped.');
    return false;
  }
  if((document.getElementById('dogs_microchipped-1').checked  ||  document.getElementById('dogs_microchipped-2').checked)  &&  document.getElementById('dogs_microchipped_service_id_number').value == '') {
    alert('Please enter the dog\'s microship service and ID number.');
    document.getElementById('dogs_tattoo_number').select();
    return false;
  }
  if(document.getElementById('dogs_color_and_markings').value == '') {
    alert('Please describe your dog\'s color and markings.');
    document.getElementById('dogs_color_and_markings').select();
    return false;
  }
  if(document.getElementById('dogs_health_issues').value == '') {
    alert('Please describe any health issues and/or concerns with your dog.');
    document.getElementById('dogs_health_issues').select();
    return false;
  }
  if(document.getElementById('dogs_vaccinations').value == '') {
    alert('Please list any vaccinations with expiration dates.');
    document.getElementById('dogs_vaccinations').select();
    return false;
  }
  if(document.getElementById('dogs_last_heartworm_preventative').value == '') {
    alert('Please indicate the date of the last heartworm preventative.');
    document.getElementById('dogs_last_heartworm_preventative').select();
    return false;
  }
  if(document.getElementById('dogs_last_fecal_test').value == '') {
    alert('Please indicate the date of the last fecal test.');
    document.getElementById('dogs_last_fecal_test').select();
    return false;
  }
  if(document.getElementById('dogs_last_heartworm_test').value == '') {
    alert('Please indicate the date of the last heartworm test.');
    document.getElementById('dogs_last_heartworm_test').select();
    return false;
  }
  if(!document.getElementById('dogs_last_heartworm_test_outcome-1').checked  &&  !document.getElementById('dogs_last_heartworm_test_outcome-2').checked) {
    alert('Please indicate the result of the last heartworm test.');
    return false;
  }
  if(document.getElementById('dogs_last_lyme_test').value == '') {
    alert('Please indicate the date of the last lyme test.');
    document.getElementById('dogs_last_lyme_test').select();
    return false;
  }
  if(!document.getElementById('dogs_last_lyme_test_outcome-1').checked  &&  !document.getElementById('dogs_last_lyme_test_outcome-2').checked) {
    alert('Please indicate the result of the last lyme test.');
    return false;
  }
  if(document.getElementById('breeder_name_and_location').value == ''  &&  document.getElementById('rescue_organization_and_location').value == ''  &&  document.getElementById('pet_store_and_location').value == ''  &&  document.getElementById('other_source').value == '') {
    alert('Please enter the dog\'s breeder/organization/pet store information.');
    return false;
  }
  if(!document.getElementById('have_you_notified_the_breeder-1').checked  &&  !document.getElementById('have_you_notified_the_breeder-2').checked) {
    alert('Please indicate whether or not you have notified the breeder of your intent to surrender.');
    return false;
  }
  if(document.getElementById('current_feeding_routine').value == '') {
    alert('Please describe the dog\'s current feeding routine (brand of food, quantity, times per day, etc...).');
    document.getElementById('current_feeding_routine').select();
    return false;
  }
  if(document.getElementById('how_long_have_you_had_the_dog').value == '') {
    alert('Please indicate how long you have had the dog.');
    document.getElementById('how_long_have_you_had_the_dog').select();
    return false;
  }
  if(document.getElementById('reason_for_surrender').value == '') {
    alert('Please indicate your reason for surrender.');
    document.getElementById('reason_for_surrender').select();
    return false;
  }
  if(document.getElementById('where_does_the_dog_spend_the_majority_of_its_time').value == '') {
    alert('Please indicate where the dog spends the majority of its time.');
    document.getElementById('where_does_the_dog_spend_the_majority_of_its_time').select();
    return false;
  }
  if(!document.getElementById('dog_contained_with-1').checked  &&  !document.getElementById('dog_contained_with-2').checked  &&  !document.getElementById('dog_contained_with-3').checked  &&  !document.getElementById('dog_contained_with-4').checked  &&  !document.getElementById('dog_contained_with-5').checked  &&  !document.getElementById('dog_contained_with-6').checked) {
    alert('Please indicate how the dog is contained.');
    return false;
  }
  if(!document.getElementById('has_the_dog_ever_escaped-1').checked  &&  !document.getElementById('has_the_dog_ever_escaped-2').checked) {
    alert('Please indicate whether or not the dog has ever escaped or jumped a fence.');
    return false;
  }
  if((document.getElementById('has_the_dog_ever_escaped-1').checked  ||  document.getElementById('has_the_dog_ever_escaped-2').checked)  &&  document.getElementById('has_the_dog_ever_escaped_detail').value == '') {
    alert('Please explain how the dog escaped.');
    document.getElementById('dogs_tattoo_number').select();
    return false;
  }
  if(!document.getElementById('does_the_dog_run_if_loose-1').checked  &&  !document.getElementById('does_the_dog_run_if_loose-2').checked) {
    alert('Please indicate whether or not the dog will run if loose.');
    return false;
  }
  if(!document.getElementById('does_the_dog_come_when_called-1').checked  &&  !document.getElementById('does_the_dog_come_when_called-2').checked) {
    alert('Please indicate whether or not the dog will come if called.');
    return false;
  }
  if(!document.getElementById('does_the_dog_walk_quietly_on_leash-1').checked  &&  !document.getElementById('does_the_dog_walk_quietly_on_leash-2').checked) {
    alert('Please indicate whether or not the dog walks quietly when on a leash.');
    return false;
  }
  if(!document.getElementById('does_the_dog_dig-1').checked  &&  !document.getElementById('does_the_dog_dig-2').checked) {
    alert('Please indicate whether or not the dog digs.');
    return false;
  }
  if(!document.getElementById('is_the_dog_house_trained-1').checked  &&  !document.getElementById('is_the_dog_house_trained-2').checked) {
    alert('Please indicate whether or not the dog is house-trained.');
    return false;
  }
  if(!document.getElementById('is_the_dog_crate_trained-1').checked  &&  !document.getElementById('is_the_dog_crate_trained-2').checked) {
    alert('Please indicate whether or not the dog is crate-trained.');
    return false;
  }
  if(!document.getElementById('has_the_dog_received_obedience_training-1').checked  &&  !document.getElementById('has_the_dog_received_obedience_training-2').checked) {
    alert('Please indicate whether or not the dog has received obedience training.');
    return false;
  }
  if((document.getElementById('has_the_dog_received_obedience_training-1').checked  ||  document.getElementById('has_the_dog_received_obedience_training-2').checked)  &&  document.getElementById('obedience_training_duration').value == '') {
    alert('Please indicate the duration of the obedience training.');
    document.getElementById('dogs_tattoo_number').select();
    return false;
  }
  if(!document.getElementById('is_the_dog_safe_with_children-1').checked  &&  !document.getElementById('is_the_dog_safe_with_children-2').checked) {
    alert('Please indicate whether or not the dog is safe with children under 13.');
    return false;
  }
  if(!document.getElementById('is_the_dog_safe_with_teens-1').checked  &&  !document.getElementById('is_the_dog_safe_with_teens-2').checked) {
    alert('Please indicate whether or not the dog is safe with teens.');
    return false;
  }
  if(!document.getElementById('is_the_dog_safe_with_strangers-1').checked  &&  !document.getElementById('is_the_dog_safe_with_strangers-2').checked) {
    alert('Please indicate whether or not the dog is safe with strangers.');
    return false;
  }
  if(!document.getElementById('is_the_dog_safe_with_other_dogs-1').checked  &&  !document.getElementById('is_the_dog_safe_with_other_dogs-2').checked) {
    alert('Please indicate whether or not the dog is safe with other dogs.');
    return false;
  }
  if(!document.getElementById('is_the_dog_safe_with_cats-1').checked  &&  !document.getElementById('is_the_dog_safe_with_cats-2').checked) {
    alert('Please indicate whether or not the dog is safe with cats.');
    return false;
  }
  if(document.getElementById('history_of_aggressive_behavior').value == '') {
    alert('Please explain any history of biting or any other aggressive behavior towards humans or other animals');
    document.getElementById('history_of_aggressive_behavior').select();
    return false;
  }
  if(!document.getElementById('food_protection_behavior-1').checked  &&  !document.getElementById('food_protection_behavior-2').checked) {
    alert('Please indicate whether or not the dog shows food protection behavior.');
    return false;
  }
  if((document.getElementById('food_protection_behavior-1').checked  ||  document.getElementById('food_protection_behavior-2').checked)  &&  document.getElementById('food_protection_behavior_detail').value == '') {
    alert('Please explain the dog\'s food protection behavior.');
    document.getElementById('dogs_tattoo_number').select();
    return false;
  }
  if(!document.getElementById('destructive_in_home-1').checked  &&  !document.getElementById('destructive_in_home-2').checked) {
    alert('Please indicate whether or not the dog is destructive in the home.');
    return false;
  }
  if((document.getElementById('destructive_in_home-1').checked  ||  document.getElementById('destructive_in_home-2').checked)  &&  document.getElementById('destructive_in_home_detail').value == '') {
    alert('Please explain how the dog is destructive in the home.');
    document.getElementById('dogs_tattoo_number').select();
    return false;
  }
  if(!document.getElementById('anxious_when_left_alone-1').checked  &&  !document.getElementById('anxious_when_left_alone-2').checked) {
    alert('Please indicate whether or not the dog is anxious when left alone.');
    return false;
  }
  if((document.getElementById('anxious_when_left_alone-1').checked  ||  document.getElementById('anxious_when_left_alone-2').checked)  &&  document.getElementById('anxious_when_left_alone_detail').value == '') {
    alert('Please explain how the dog behaves when left alone.');
    document.getElementById('dogs_tattoo_number').select();
    return false;
  }
  if(!document.getElementById('dogs_personality-1').checked  &&  !document.getElementById('dogs_personality-2').checked) {
    alert('Please indicate whether or not the dog is sedentary or active (or both).');
    return false;
  }
  if(document.getElementById('dogs_personality_detail').value == '') {
    alert('Please explain your dog\'s history, personality, quirks, etc...');
    document.getElementById('dogs_personality_detail').select();
    return false;
  }
  if(document.getElementById('people_in_household').value == '') {
    alert('Please indicate how many people are in your household, along with their age.');
    document.getElementById('people_in_household').select();
    return false;
  }
  if(!document.getElementById('other_dogs-1').checked  &&  !document.getElementById('other_dogs-2').checked) {
    alert('Please indicate whether or not you own other dogs.');
    return false;
  }
  if((document.getElementById('other_dogs-1').checked  ||  document.getElementById('other_dogs-2').checked)  &&  document.getElementById('other_dogs_detail').value == '') {
    alert('Please provide information on the other dogs in your household, including age, sex and spay/neuter information.');
    return false;
  }
  if(!document.getElementById('other_pets-1').checked  &&  !document.getElementById('other_pets-2').checked) {
    alert('Please indicate whether or not you own other pets.');
    return false;
  }
  if((document.getElementById('other_pets-1').checked  ||  document.getElementById('other_pets-2').checked)  &&  document.getElementById('other_pets_detail').value == '') {
    alert('Please provide information on the other pets in your household, including age and sex.');
    return false;
  }
  if(document.getElementById('how_long_can_you_hold_your_dog').value == '') {
    alert('Please indicate how long you can hold your dog.');
    document.getElementById('how_long_can_you_hold_your_dog').select();
    return false;
  }
  if(!document.getElementById('will_you_help_transport_your_dog-1').checked  &&  !document.getElementById('will_you_help_transport_your_dog-2').checked) {
    alert('Please indicate whether or not you will help transport your dog.');
    return false;
  }
  if(document.getElementById('veterinarians_name').value == '') {
    alert('Please enter your current Veterinarian\'s name.');
    document.getElementById('veterinarians_name').select();
    return false;
  }
  if(document.getElementById('veterinarians_phone').value == '') {
    alert('Please enter your current Veterinarian\'s phone number.');
    document.getElementById('veterinarians_phone').select();
    return false;
  }
  if(document.getElementById('other_comments').value == '') {
    alert('Please enter any other comments/concerns.');
    document.getElementById('other_comments').select();
    return false;
  }
  return true;
}
