<!--

window.onload = init;

function init() {
hideStuff();
}

function hideStuff() {
	document.getElementById("nextlink").className="hide";
	document.getElementById("quiz").className="show";
}

function checkAnswer(answer) {
	// answer = document.getElementById("answer").value;
	if (answer == "true") {
		document.getElementById("quiz").className="hide";
		document.getElementById("nextlink").className="show";

	} else {
		alert("Read Carefully and Try Again");
	}
}

// -->
