function CalculateScore(){
	var number_of_questions = document.quizform.q.length;
	var score = 0;
		for(i=0;i<number_of_questions;i++){
			if(document.quizform.q[i].checked){
				var points = parseInt(document.quizform.q[i].value);
			}else{
				points = 0;
				 }
				score = score + points;
		
		}
	document.quizform.totalscore.value = score;
}