Results - OOPS, can't figure out how to write the results to the page! But, it should have showed up as an "Alert".
SCRIPT
function tester(form) {
var percent;
var correct = 0;
if (form[0].checked == true) correct++; // OR if (form.No1[0].checked == true) correct++;
if (form[3].checked == true) correct++; // OR if (form.No2[1].checked == true) correct++;
if (form[5].checked == true) correct++; // etc...
if (form[6].checked == true) correct++;
if (form[9].checked == true) correct++;
percent = (correct / 5) * 100;
if (percent == 100) alert("You got a " + percent + "%. Great Job!");
if (percent < 100) alert("You got " + correct + " out of 5 correct ( " + percent + "% )");
}