	function Validator(theForm)
	{	
	
	  if (theForm.terms.checked == false)
	  {
		alert("Please agree to the terms and conditions.");
		theForm.terms.focus();
		return (false);
	  }
	}
	

