function validEmail(Email) {
			invalidChars = " /:,;"
	
			if (Email == "") {
				return false
			}
			for (i=0; i<invalidChars.length; i++) {
				badChar = invalidChars.charAt(i)
				if (Email.indexOf(badChar,0) > -1) {
					return false
				}
			}
			atPos = Email.indexOf("@",1)
			if (atPos == -1) {
				return false
			}
			if (Email.indexOf("@",atPos+1) > -1) {
				return false
			}
			periodPos = Email.indexOf(".",atPos)
			if (periodPos == -1) {
				return false
			}
			if (periodPos+3 > Email.length)	{
				return false
			}
			return true
		}

		function submitIt(booking_form) {
			// ** START **
           if (booking_form.Name.value == "") {
           alert( "Please enter your name." );
           booking_form.Name.focus();
           return false ;
           }
          // ** END **
			if (!validEmail(booking_form.Email.value)) {
				alert("Invalid Email Address")
				booking_form.Email.focus()
				booking_form.Email.select()
				return false
			}
			  // ** START **
           if (booking_form.Phone.value == "") {
           alert( "Please enter a phone number." );
           booking_form.Phone.focus();
           return false ;
           }
            // ** END **
		    // ** START **
           if (booking_form.Name_of_Event.value == "") {
           alert( "Please enter the Name of the Event." );
           booking_form.Name_of_Event.focus();
           return false ;
           }
            // ** END **
			// ** START **
           if (booking_form.Date_of_Event.value == "") {
           alert( "Please enter the date for the Event." );
           booking_form.Date_of_Event.focus();
           return false ;
           }
            // ** END **
			// ** START **
           if (booking_form.Name_of_Location.value == "") {
           alert( "Please enter the name of the location for event." );
           booking_form.Name_of_Location.focus();
           return false ;
           }
            // ** END **
			// ** START **
           if (booking_form.Street_Address.value == "") {
           alert( "Please enter event address." );
           booking_form.Street_Address.focus();
           return false ;
           }
            // ** END **
			// ** START **
           if (booking_form.City.value == "") {
           alert( "Please enter event city." );
           booking_form.City.focus();
           return false ;
           }
            // ** END **
			// ** START **
           if (booking_form.Zip_Code.value == "") {
           alert( "Please enter event zip code." );
           booking_form.Zip_Code.focus();
           return false ;
           }
            // ** END **
			// ** START **
           if (booking_form.Time.value == "") {
           alert( "Please enter the time of the event." );
           booking_form.Time.focus();
           return false ;
           }
            // ** END **
			// ** START **
           if (booking_form.Admission_Fee.value == "") {
           alert( "Please enter an admission feee for the event." );
           booking_form.Admission_Fee.focus();
           return false ;
           }
		   	// ** START **
            // ** END **
			if (booking_form.blank.value != "") {
           alert( "Stop Spamming!!!" );
           booking_form.blank.focus();
           return false ;
           }
            // ** END **
			// ** START **
           if (booking_form.Event_Description.value == "") {
           alert( "Please enter the event description." );
           booking_form.Event_Description.focus();
           return false ;
           }
            // ** END **
			return true
		}