
function checkForm(theForm){
				if(theForm.oname.value==""){
						alert("Please supply Organisation Name!");
						theForm.oname.focus();
						return(false);
					}
					if(theForm.otype.value=="na"){
						alert("Please select Organisation Type !");
						theForm.otype.focus();
						return(false);
					}
					if(theForm.cname.value==""){
						alert("Please supply Contact Name!");
						theForm.cname.focus();
						return(false);
					}
					if(theForm.p_role.value=="NA"){
						alert("Please select Position/Role !");
						theForm.p_role.focus();
						return(false);
					}
					if(theForm.us_state.value=="NA"){
						alert("Please select your state !");
						theForm.us_state.focus();
						return(false);
					}
					if(theForm.address.value==""){
						alert("Please supply your Address!");
						theForm.address.focus();
						return(false);
					}
					if(theForm.phone.value==""){
						alert("Please supply your phone number !");
						theForm.phone.focus();
						return(false);
					}
					if(theForm.fax.value==""){
						alert("Please supply your fax number !");
						theForm.fax.focus();
						return(false);
					}
					if(theForm.email.value==""){
						alert("Please supply your email address !");
						theForm.email.focus();
						return(false);
					}
					if(theForm.zip.value==""){
						alert("Please supply your Zip code!");
						theForm.zip.focus();
						return(false);
					}
					if(theForm.paddress.value==""){
						alert("Please supply your Pick up Address!");
						theForm.paddress.focus();
						return(false);
					}
					if(theForm.pcity.value==""){
						alert("Please supply your Pick up City!");
						theForm.pcity.focus();
						return(false);
					}
					if(theForm.pus_state.value=="NA"){
						alert("Please select your Pick up state !");
						theForm.pus_state.focus();
						return(false);
					}
					if(theForm.number.value==""){
						alert("Please type the number of passengers");
						theForm.number.focus();
						return(false);
					}
					/*
					if(theForm.h2.value=="hr"){
						alert("Please select your Depart time");
						theForm.h2.focus();
						return(false);
					}
					if(theForm.m2.value=="min"){
						alert("Please select your Depart time !");
						theForm.m2.focus();
						return(false);
					}
					if(theForm.h3.value=="hr"){
						alert("Please select your Arrival time");
						theForm.h3.focus();
						return(false);
					}
					if(theForm.m3.value=="min"){
						alert("Please select your Arrival time !");
						theForm.m3.focus();
						return(false);
					}
					
					if(theForm.busnum.value=="NA"){
						alert("Please select the number of bus required !");
						theForm.busnum.focus();
						return(false);
					}
					/**/
					return(true);
				}

function go()
{
	if(confirm(" Are you sure you want to clear all the information? "))
	{
		document.reservation.reset();
	}
}



