function scoreQuiz()
{
  var correct = 0;
  if (window.document.the_form.q1.options[1].selected == true) {
    correct = correct + 1;
  }

  if (window.document.the_form.q2.options[1].selected == true) {
    correct = correct + 1;
  }

  if (window.document.the_form.q3.options[1].selected == true) {
    correct = correct + 1;
  }

  if (window.document.the_form.q4.options[1].selected == true) {
    correct = correct + 1;
  }




  if (correct==4){
    window.location = "http://www.homesforourtroops.org/site/Survey?ACTION_REQUIRED=URI_ACTION_USER_REQUESTS&SURVEY_ID=2300"
  }
  else {
    window.location = "http://www.homesforourtroops.org/site/PageServer?pagename=NotEligible"
  }
}
