function validateOnSubmit() {
	if (!document.forms[1].agree.checked) {
		document.getElementById("agree_text").style.color = "red";
		alert('You must agree to the Terms of Service and Privacy Policy');
		return false;
	}					
	if (!document.forms[1].agecheck.checked) {
		document.getElementById("agecheck_text").style.color = "red";
		alert('You must be at least 13 years old to register for FiveSprockets');
		return false;
	}					
				
};

function validateCommentOnSubmit() {			
	if (document.getElementById("commentForm").commentText.value == "") {
		alert('You must enter a comment');
		return false;
	}					
				
};