// JavaScript Order Form validation
function Form_Validator(theForm)
{
	if (theForm.customer_name.value == "")
	{
		alert("Please enter your name");
		theForm.customer_name.focus();
		return (false);
	}	
 	if (theForm.no_passengers.value == "")
  {
    alert("Please enter the number of passengers");
    theForm.no_passengers.focus();
    return (false);
  }
	if (theForm.cell_phone.value == "")
  {
    alert("Please enter your Cell Phone Number");
    theForm.cell_phone.focus();
    return (false);
  }
	if (theForm.other_phone.value == "")
  {
    alert("Please enter another Phone number");
    theForm.other_phone.focus();
    return (false);
  }
	
	if (theForm.pickup_date.value == "")
  {
    alert("Please enter a Pick-up Date");
    theForm.pickup_date.focus();
    return (false);
  }
	if (theForm.pickup_time.value == "")
  {
    alert("Please enter a Pick-up Time ");
    theForm.pickup_time.focus();
    return (false);
  }
  

   return (true);
}