// JavaScript Document
				

			  	function checkForm(theForm){
					//alert (theForm.ptime.value);
					if(theForm.departure.value==""){
						alert("Please supply Day and Date of Depature.");
						theForm.departure.focus();
						return(false);
					}
					if(theForm.pickuptime.value==""){
						alert("Please supply Pickup Time.");
						theForm.pickuptime.focus();
						return(false);
					}
					if(theForm.nameofpassenger.value==""){
						alert("Please supply name of passenger.");
						theForm.nameofpassenger.focus();
						return(false);
					}					
					if(theForm.ofpassengers.value==""){
						alert("Please supply number of passenger.");
						theForm.ofpassengers.focus();
						return(false);
					}
					
					if(theForm.companyname.value==""){
						alert("Please supply company name.");
						theForm.companyname.focus();
						return(false);
					}
					
			
					if(theForm.pickupaddress.value==""){
						alert("Please supply pickup address.");
						theForm.pickupaddress.focus();
						return(false);
					}
					if(theForm.complexname.value==""){
						alert("Please supply complex name");
						theForm.complexname.focus();
						return(false);
					}
					if(theForm.zipcode.value==""){
						alert("Please supply zip code.");
						theForm.zipcode.focus();
						return(false);
					}
					if(theForm.pickupphone.value ==""){
						alert("Please supply pickup phone.");
						theForm.pickupphone.focus();
						return(false);
					}
					if(theForm.dropoff.value==""){
						alert("Please supply drop off.");
						theForm.dropoff.focus();
						return(false);
					}
					if(theForm.airline.value==""){
						alert("Please supply airline.");
						theForm.airline.focus();
						return(false);
					}
					if(theForm.departuretime.value==""){
						alert("Please supply departure time.");
						theForm.departuretime.focus();
						return(false);
					}
					if(theForm.vehicle.value==""){
						alert("Please supply vehicle type.");
						theForm.vehicle.focus();
						return(false);
					}
					if(theForm.contactname.value==""){
						alert("Please supply contact name.");
						theForm.contactname.focus();
						return(false);
					}
					if(theForm.contactphone.value==""){
						alert("Please supply contact phone.");
						theForm.contactphone.focus();
						return(false);
					}
					if(theForm.specialinstruction.value==""){
						alert("Please supply special instruction and method of payment.");
						theForm.specialinstruction.focus();
						return(false);
					}
					if(theForm.arrival.value==""){
						alert("Please supply day and date of arrivsl.");
						theForm.arrival.focus();
						return(false);
					}
					if(theForm.nameofpassenger2.value==""){
						alert("Please supply name of passenger.");
						theForm.nameofpassenger2.focus();
						return(false);
					}
					if(theForm.ofpassengers2.value==""){
						alert("Please supply number of passenger.");
						theForm.ofpassengers2.focus();
						return(false);
					}
					if(theForm.companyname2.value==""){
						alert("Please supply company name.");
						theForm.companyname2.focus();
						return(false);
					}
					if(theForm.dropoff2.value==""){
						alert("Please supply dropoff address.");
						theForm.dropoff2.focus();
						return(false);
					}
					if(theForm.airlineflight.value==""){
						alert("Please supply airline flight.");
						theForm.airlineflight.focus();
						return(false);
					}
					if(theForm.arrivaltime.value==""){
						alert("Please supply airline flight.");
						theForm.arrivaltime.focus();
						return(false);
					}
					if(theForm.originatingcity.value==""){
						alert("Please supply originating city.");
						theForm.originatingcity.focus();
						return(false);
					}
					if(theForm.dropoff.value==""){
						alert("Please supply dropoff address.");
						theForm.dropoff.focus();
						return(false);
					}
					if(theForm.vehicle2.value==""){
						alert("Please supply the vehicle type.");
						theForm.vehicle2.focus();
						return(false);
					}
					if(theForm.contactname2.value==""){
						alert("Please supply contact name.");
						theForm.contactname2.focus();
						return(false);
					}
					if(theForm.contactphone2.value==""){
						alert("Please supply contact phone.");
						theForm.contactphone2..focus();
						return(false);
					}
					if(theForm.specialinstruction2.value==""){
						alert("Please supply special instruction.");
						theForm.specialinstruction2.focus();
						return(false);
					}
					if(theForm.emailaddress.value==""){
						alert("Please supply special instruction.");
						theForm.emailaddress.focus();
						return(false);
					}
					return(true);
				}


