<!--
function checkTest(frm) {
	if (frm.test.value == frm.answer.value) {
		return true;
	} else {
		alert("You have not answered the 'stop spam' field correctly. Please try again.");
		return false;
	}
}
-->