// JavaScript Document
<!--
function checkAnswers() {
	if (document.quiz.rad1[1].checked) {
		document.getElementById('a1').innerHTML = "Correct:&nbsp;&nbsp;&nbsp; 'Travel in reverse looking in the direction of travel.'";
	} else {
		document.getElementById('a1').innerHTML = "Incorrect:&nbsp;&nbsp;&nbsp; The answer was&nbsp;&nbsp; 'Travel in reverse looking in the direction of travel.'";
	}
		
	if (document.quiz.rad2[0].checked) {
		document.getElementById('a2').innerHTML = "Correct:&nbsp;&nbsp;&nbsp; 'You!! &nbsp;The lift truck operator.'";
	} else {
		document.getElementById('a2').innerHTML = "Incorrect:&nbsp;&nbsp; &nbsp;The answer was&nbsp;&nbsp; 'You - The lift truck operator.'";
	}
	
	if (document.quiz.rad3[1].checked) {
		document.getElementById('a3').innerHTML = "Correct:&nbsp;&nbsp;&nbsp; 'Lower the forks to the ground.'";
	} else {
		document.getElementById('a3').innerHTML = "Incorrect:&nbsp;&nbsp;&nbsp; The answer was&nbsp;&nbsp; 'Lower the forks to the ground.'";
	}
	
	if (document.quiz.rad4[1].checked) {
		document.getElementById('a4').innerHTML = "Correct:&nbsp;&nbsp;&nbsp; 'At a speed consistent with the type of load and general working condtions/rules.'";
	} else {
		document.getElementById('a4').innerHTML = "Incorrect:&nbsp;&nbsp;&nbsp; The answer was&nbsp;&nbsp; 'At a speed consistent with the type of load and general working condtions/rules.'";
	}
	
	if (document.quiz.rad5[2].checked) {
		document.getElementById('a5').innerHTML = "Correct:&nbsp;&nbsp;&nbsp; F'";
	} else {
		document.getElementById('a5').innerHTML = "Incorrect:&nbsp;&nbsp;&nbsp; The answer was&nbsp;&nbsp; 'F'";
	}
	
	if (document.quiz.rad6[0].checked) {
		document.getElementById('a6').innerHTML = "Correct:&nbsp;&nbsp;&nbsp; At the top.'";
	} else {
		document.getElementById('a6').innerHTML = "Incorrect:&nbsp;&nbsp;&nbsp; The answer was&nbsp;&nbsp; 'At the top.'";
	}
}
//-->