	<!--
	function ValidateForm(form)
	{
		if(EventForm.NameOfEvent.value == ''  || (EventForm.NameOfEvent.value.indexOf('"') != -1))
		{
			alert('Sorry, you must enter the name of the event OR You must remove the quotes the event name');
			return false;
		}
		
		if(EventForm.LocationOfEvent.value == '' || (EventForm.LocationOfEvent.value.length < 20) )
		{
			alert('Please enter the location of your event.  A street address, church, hotel, etc.  The length of field must be greater than 20' );
			return false;
		}
		
		if(EventForm.StateEvent.value == 'OO')
		{
			alert('Enter  State, Territory or Province of the Event');
			return false;
		}
		
		if(EventForm.TypeOfEvent.value == '')
		{
			alert('Sorry, you must enter the TYPE of event');
			return false;
		}
		
		if(EventForm.StartDate.value == '')
		{
			alert('Please the start date of your event: dd/mm/yyyy format ');
			return false;
		}
		
		if(EventForm.ContactName.value == '')
		{
			alert('Please enter the name of the person we can contact to verify the event.  The person CAN be a general contact person.');
			return false;
		}
		
		if(EventForm.Phone.value == '')
		{
			alert('Please leave an ACTUAL phone number so that we may vocally verify the event when necessary');
			return false;
		}
		
		if( (EventForm.Email.value == "") || (EventForm.Email.value.indexOf("@") == -1) )
 		{
			alert('You have entered an improper email address or the email input is empty');
			return false;
		}
	}
	// -->
