function ValidateAgreeForm(){
	var agreeID=document.startTest.agree
	
	if (!agreeID.checked){
		alert("You cannot proceed unless you agree to use this test for personal purposes only.")
		return false
	}
	return true
}
