	function QRQ1() {
		AnswerWindow = window.open('','AnswerWindow','toolbar=no,location=no,width=300,height=150');
		var answer = "<html><head><title>Quick Review Question Answer</title></head><body bgcolor=\"#E1E5BE\"><center><img src=\"images/QRQ1pic.gif\"></center>\n<br><br>\n<form name=\"form\"><center><input type=\"button\" name=\"button\" value=\"Close this window\" onClick=\"window.close();\"></center></form><script language=\"JavaScript\">document.form.button.focus();document.form.button.select();</script></body></html>";
		AnswerWindow.document.write(answer);
	}
	
	function QRQ2() {
		AnswerWindow = window.open('','AnswerWindow','toolbar=no,location=no,width=300,height=225');
		var answer = "<html><head><title>Quick Review Question Answer</title></head><body bgcolor=\"#E1E5BE\"><center><img src=\"images/QRQ2pic.gif\"></center>\n<br><br>\n<form name=\"form\"><center><input type=\"button\" name=\"button\" value=\"Close this window\" onClick=\"window.close();\"></center></form><script language=\"JavaScript\">document.form.button.focus();document.form.button.select();</script></body></html>";
		AnswerWindow.document.write(answer);		
	}
	
	function QRQ3() {
		var correct = "1";
		var correctans = document.QRQ3form.radio1[correct].value;

		if (document.QRQ3form.radio1[correct].checked == true) {
			RightWindow = window.open('','RightWindow','toolbar=no,location=no,width=300,height=150');
			var congrats = "<html><head><title>Quick Review Question Answer</title></head><body bgcolor=\"#E1E5BE\"><font size=4>You are correct! " + correctans + " is the correct answer.</font>\n<br><br>\n<form name=\"form\"><input type=\"button\" name=\"button\" value=\"Close this window\" onClick=\"window.close();\"></form><script language=\"JavaScript\">document.form.button.focus();document.form.button.select();</script>";
			RightWindow.document.write(congrats);
		} else {
			WrongWindow = window.open('','WrongWindow','toolbar=no,location=no,width=300,height=150');
			var sorry = "<html><head><title>Quick Review Question Answer</title></head><body bgcolor=\"#E1E5BE\"><font size=4>You are incorrect - The correct answer is: " + correctans + "</font>\n<br><br>\n<form name=\"form\"><input type=\"button\" name=\"button\" value=\"Close this window\" onClick=\"window.close();\"></form><script language=\"JavaScript\">document.form.button.focus();document.form.button.select();</script>";
			WrongWindow.document.write(sorry);				
		}
	}