function FormVerify() {
	if (document.fastaudit.eventname.value == "") {
		alert("You must enter the Event Name");
		document.fastaudit.eventname.focus();
		return false; }
	if (document.fastaudit.eventcity.value == "") {
		alert("You must enter the Event's City");
		document.fastaudit.eventcity.focus();
		return false; }
}