// JavaScript Document

function checkForm(theForm) {	
	if(!theForm.Permission.checked) {
		alert("We need your permission before we can share your contribution.");
		return false;
	}
	else {
		return true;	
	}	
}