// JavaScript Document

function ValidateFormThree(){
	if (document.form3.agreebox.checked==false){
		alert("You Must Check the Box to Continue")
		return false
	}
	return true
 }
