<!--


var correct=0;

function getCk(){ 
if (document.quiz.q1[2].checked==true) correct=correct+1;
if (document.quiz.q2[1].checked==true) correct=correct+1; 
if (document.quiz.q3[2].checked==true) correct=correct+1; 
if (document.quiz.q4[1].checked==true) correct=correct+1; 
if (document.quiz.q5[0].checked==true) correct=correct+1; 
if (document.quiz.q6[1].checked==true) correct=correct+1; 
if (document.quiz.q7[0].checked==true) correct=correct+1; 
if (document.quiz.q8[1].checked==true) correct=correct+1; 
if (document.quiz.q9[0].checked==true) correct=correct+1;
if (document.quiz.q0[2].checked==true) correct=correct+1;  

alert ("You have scored "+correct+" points in Quiz 1");
}

// --> 

 


