function survey_results()
{



//Question 4
for (var i=0; i < document.surveyform.Question4.length; i++)
   {
   if (document.surveyform.Question4[i].checked)
      {
      var Question4_value = document.surveyform.Question4[i].value;
      }
   }


//Question 9
for (var i=0; i < document.surveyform.Question9.length; i++)
   {
   if (document.surveyform.Question9[i].checked)
      {
      var Question9_value = document.surveyform.Question9[i].value;
      }
   }

if ((Question4_value == undefined) || (Question9_value == undefined)) {
   alert("Questions 4 and 9 are required. Thank you.");
   return;
   }

if (Question9_value == 'yes')   {
  window.location = "survey_alanbair_main.html";
  return;
  }


if (Question4_value == 'no'){
  window.location = "survey_notsuited_main.html";
  return;
  }
else {
  window.location = "survey_goodfit_main.html";
  return;
  }
}


