<!-- //hide the script
function form_validator(theForm)
{

	if(theForm.sender.value == "") {
		 alert("Please enter your Full Name.");
		 theForm.sender.focus();
		 return(false);
	}
	
	if(theForm.address_1.value == "") {
		 alert("Please enter your Address.");
		 theForm.address_1.focus();
		 return(false);
	}
	
	if(theForm.town.value == "") {
		 alert("Please enter your Town.");
		 theForm.town.focus();
		 return(false);
	}
	
	if(theForm.county.value == "") {
		 alert("Please enter your County.");
		 theForm.county.focus();
		 return(false);
	}
	
	if(theForm.postcode.value == "") {
		 alert("Please enter your Post Code.");
		 theForm.postcode.focus();
		 return(false);
	}
	
	if(theForm.telephone.value == "") {
		 alert("Please enter your Telephone Number.");
		 theForm.telephone.focus();
		 return(false);
	}

	if(theForm.email.value == "") {
		 alert("Please enter your Email Address.");
		 theForm.email.focus();
		 return(false);
	}
	
	if(theForm.Location.value == "") {
		 alert("Please select a Booking Location.");
		 theForm.Location.focus();
		 return(false);
	}
	
	if(theForm.Booking.value == "") {
		 alert("Please select a Booking Option.");
		 theForm.Booking.focus();
		 return(false);
	}
	
	if(theForm.Attendees.value == "") {
		 alert("Please enter an estimated Number Of Attendees.");
		 theForm.Attendees.focus();
		 return(false);
	}
	
	if(theForm.BookingTime.value == "") {
		 alert("Please enter a preferred Booking Time.");
		 theForm.BookingTime.focus();
		 return(false);
	}
	
	if(theForm.BookingDate.value == "") {
		 alert("Please enter a preferred Booking Date.");
		 theForm.BookingDate.focus();
		 return(false);
	}
	
	return (true);
}
// end script hiding -->