// theForm = document.form
function CheckEvent(theForm) {
	if (theForm.first_name.value == '') {
		alert('Please enter your first name.');
		theForm.first_name.focus();
		return false;
	} else if (theForm.last_name.value == '') {
		alert('Please enter your last name.');
		theForm.last_name.focus();
		return false;
	} else if (theForm.address.value == '') {
		alert('Please enter your address.');
		theForm.address.focus();
		return false;
	} else if (theForm.city.value == '') {
		alert('Please enter your city.');
		theForm.city.focus();
		return false;
	} else if (theForm.state.value == '') {
		alert('Please enter your state.');
		theForm.state.focus();
		return false;
	} else if (theForm.zip.value == '') {
		alert('Please enter your zip.');
		theForm.zip.focus();
		return false;
	} else if (theForm.day_phone.value == '') {
		alert('Please enter your daytime phone number.');
		theForm.day_phone.focus();
		return false;
	} else if (theForm.evening_phone.value == '') {
		alert('Please enter your evening phone number.');
		theForm.evening_phone.focus();
		return false;
	} else if (theForm.best_time[0].checked != true && theForm.best_time[1].checked != true && theForm.best_time[2].checked != true) {
		alert('Please tell us what is the best time to contact you.');
		// theForm.best_time.focus();
		return false;
	} else if (theForm.email.value == '') {
		alert('Please enter your email address.');
		theForm.email.focus();
		return false;
	} else if (theForm.event_date.value == '') {
		alert('Please enter the date of your event.');
		theForm.event_date.focus();
		return false;
	} else if (theForm.event_type.value == '') {
		alert('Please enter the type of event.');
		theForm.event_type.focus();
		return false;
	} else {
		return true;
	}
}