function validateDonationsQuestionsForm(form) {
         
  if(form.question.value.length < 12) {
    alert("Please type a question into the question field.");
    return false;
  }

  if(form.name.value.length < 3) {
    alert("Please tell us your name.");
    return false;
  }

  if(form.email.value.length < 7) {
    alert("Please provide an email where we can reach you.");
    return false;
  }

  return true;
}

