// who are you quiz

function quiz(quizForm)
{
var answers = new Array(5);
var i = 0;
var highest=0;
var winner=0;

answers[1]=0;answers[2]=0;answers[3]=0;answers[4]=0;

for(;i<quizForm.elements.length;i++)
  {
    if(("radio" == quizForm.elements[i].type) &&
       (quizForm.elements[i].checked))
    {
	  if ((score=(++answers[eval(quizForm.elements[i].value)]))>highest) {
	  highest=score;
	  winner=eval(quizForm.elements[i].value);
	  }
    }
  }
  if (winner=="0") alert("Go on - Try answering at least one question!");
  if (winner=="1") document.location.href = "quiz_who_gwe.html";
  if (winner=="2") document.location.href = "quiz_who_wes.html";
  if (winner=="3") document.location.href = "quiz_who_ely.html";
  if (winner=="4") document.location.href = "quiz_who_tuk.html";
return false;
}