function submitIt(flagForm) {
	var noGo=1;
	var ans = new Array("a","b","c","d");
	for(i=1; i<=26; i++){
		for(j=0;j<4;j++){
			if(flagForm["Q"+i+ans[j]].checked){
				noGo = 0;
			}
		}
		if(noGo==1){
			alert("Please answer all questions");
			flagForm["Q"+i+"a"].focus();
			return false;
		}
	noGo=1;
	}
	return true;
}