<!--



var correct=0;

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

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

}


// --> 

 


