<!--
function Update() {
        var tot = 0;
        if (document.quiz.answer1[0].checked) tot += 5;
        if (document.quiz.answer1[1].checked) tot += 3;
        if (document.quiz.answer1[2].checked) tot += 1;

        if (document.quiz.answer2[0].checked) tot += 5;
        if (document.quiz.answer2[1].checked) tot += 3;
        if (document.quiz.answer2[2].checked) tot += 1;

        if (document.quiz.answer3[0].checked) tot += 5;
        if (document.quiz.answer3[1].checked) tot += 3;
        if (document.quiz.answer3[2].checked) tot += 1;

        if (document.quiz.answer4[0].checked) tot += 5;
        if (document.quiz.answer4[1].checked) tot += 3;
        if (document.quiz.answer4[2].checked) tot += 1;

        if (document.quiz.answer5[0].checked) tot += 5;
        if (document.quiz.answer5[1].checked) tot += 3;
        if (document.quiz.answer5[2].checked) tot += 1;

        if (document.quiz.answer6[0].checked) tot += 5;
        if (document.quiz.answer6[1].checked) tot += 3;
        if (document.quiz.answer6[2].checked) tot += 1;

        if (document.quiz.answer7[0].checked) tot += 5;
        if (document.quiz.answer7[1].checked) tot += 3;
        if (document.quiz.answer7[2].checked) tot += 1;

        if (document.quiz.answer8[0].checked) tot += 5;
        if (document.quiz.answer8[1].checked) tot += 3;
        if (document.quiz.answer8[2].checked) tot += 1;

        if (document.quiz.answer9[0].checked) tot += 5;
        if (document.quiz.answer9[1].checked) tot += 3;
        if (document.quiz.answer9[2].checked) tot += 1;

        if (document.quiz.answer10[0].checked) tot += 5;
        if (document.quiz.answer10[1].checked) tot += 3;
        if (document.quiz.answer10[2].checked) tot += 1;

        if (document.quiz.answer11[0].checked) tot += 5;
        if (document.quiz.answer11[1].checked) tot += 3;
        if (document.quiz.answer11[2].checked) tot += 1;

        if (document.quiz.answer12[0].checked) tot += 5;
        if (document.quiz.answer12[1].checked) tot += 3;
        if (document.quiz.answer12[2].checked) tot += 1;

        if (document.quiz.answer13[0].checked) tot += 5;
        if (document.quiz.answer13[1].checked) tot += 3;
        if (document.quiz.answer13[2].checked) tot += 1;

        if (document.quiz.answer14[0].checked) tot += 5;
        if (document.quiz.answer14[1].checked) tot += 3;
        if (document.quiz.answer14[2].checked) tot += 1;

        if (document.quiz.answer15[0].checked) tot += 5;
        if (document.quiz.answer15[1].checked) tot += 3;
        if (document.quiz.answer15[2].checked) tot += 1;

        if (document.quiz.answer16[0].checked) tot += 5;
        if (document.quiz.answer16[1].checked) tot += 3;
        if (document.quiz.answer16[2].checked) tot += 1;

        if (document.quiz.answer17[0].checked) tot += 5;
        if (document.quiz.answer17[1].checked) tot += 3;
        if (document.quiz.answer17[2].checked) tot += 1;

        if (document.quiz.answer18[0].checked) tot += 5;
        if (document.quiz.answer18[1].checked) tot += 3;
        if (document.quiz.answer18[2].checked) tot += 1;

        if (document.quiz.answer19[0].checked) tot += 5;
        if (document.quiz.answer19[1].checked) tot += 3;
        if (document.quiz.answer19[2].checked) tot += 1;

        if (document.quiz.answer20[0].checked) tot += 5;
        if (document.quiz.answer20[1].checked) tot += 3;
        if (document.quiz.answer20[2].checked) tot += 1;

        document.quiz.score.value = tot;
}
//-->
