// JavaScript Document



			  	function formvalidation(billing){
					if(billing.FirstName.value==""){
						alert("Please supply Name of Passenger.");
						billing.FirstName.focus();
						return(false);
					}
					if(billing.CompanyName.value==""){
						alert("Please supply Company Name.");
						billing.CompanyName.focus();
						return(false);
					}
					if(billing.Address.value==""){
						alert("Please supply the Address.");
						billing.Address.focus();
						return(false);
					}
					if(billing.City.value==""){
						alert("Please supply Your City.");
						billing.City.focus();
						return(false);
					}
					if(billing.State.value==""){
						alert("Please supply the State.");
						billing.State.focus();
						return(false);
					}
					if(billing.Zip.value==""){
						alert("Please supply Zip Code.");
						billing.Zip.focus();
						return(false);
					}
					if(billing.Attention.value==""){
						alert("Please supply Attention.");
						billing.Attention.focus();
						return(false);
					}
					if(billing.Dept.value==""){
						alert("Please supply Department.");
						billing.Dept.focus();
						return(false);
					}
					if(billing.PhoneNumber.value==""){
						alert("Please supply Phone Number.");
						billing.PhoneNumber.focus();
						return(false);
					}
					if(billing.Email.value==""){
						alert("Please supply Email Address.");
						billing.Email.focus();
						return(false);
					}
					if(billing.Fax.value==""){
						alert("Please supply the Fax Number.");
						billing.Fax.focus();
						return(false);
					}
					if(billing.date.value==""){
						alert("Please supply the Date.");
						billing.date.focus();
						return(false);
					}
					if(billing.FirstName2.value==""){
						alert("Please supply Name of Passenger.");
						billing.FirstName2.focus();
						return(false);
					}
					if(billing.creditcardholder.value==""){
						alert("Please supply Name of the Credit card holder.");
						billing.creditcardholder.focus();
						return(false);
					}
					if(billing.creditcardcompany.value==""){
						alert("Please supply the Credit card company.");
						billing.creditcardcompany.focus();
						return(false);
					}
					if(billing.accountnumber.value==""){
						alert("Please supply Account Number.");
						billing.accountnumber.focus();
						return(false);
					}
					if(billing.expdate.value==""){
						alert("Please supply the Expiry date.");
						billing.expdate.focus();
						return(false);
					}
					if(billing.lic.value==""){
						alert("Please supply the Driver's Lic. Number.");
						billing.lic.focus();
						return(false);
					}
					if(billing.state.value==""){
						alert("Please supply State.");
						billing.state.focus();
						return(false);
					}
					if(billing.date1.value==""){
						alert("Please supply the Date.");
						billing.date1.focus();
						return(false);
					}
					return(true);
				}
		