// JavaScript Document



function pwaValidate() {

	// Check to make sure that a school name was entered
	if (eventForm.studentID.value == "") {
		alert("Please provide a school name.");
		return false;
	}

	else {
    	document.eventForm.eventHistory.value = eventForm.studentID.value;
		return true; //Form all good
  	}

}
