	function CheckAll(thisform) {
		//bedding configuration
		if (thisform.c5.value == "")
		{
				alert("Please complete the form !")
				thisform.c5.focus()
				return false
		}
		// number rooms
		if (thisform.c6.value == "")
		{
				alert("Please complete the form !")
				thisform.c6.focus()
				return false
		}
		// chek in
		if (thisform.c7.value == "")
		{
				alert("Please complete the form !")
				thisform.c7.focus()
				return false
		}
		//chek out
		if (thisform.c8.value == "")
		{
				alert("Please complete the form !")
				thisform.c8.focus()
				return false
		}
		//how many adults
		if (thisform.c9.value == "")
		{
				alert("Please complete the form !")
				thisform.c9.focus()
				return false
		}
		//how many children
		if (thisform.c10.value == "")
		{
				alert("Please complete the form !")
				thisform.c10.focus()
				return false
		}
		//airpot pick up
		if (thisform.c11[0].checked)
		{
					
			//Flight arrival
					if (thisform.c13.value == "")
			{
						alert("Please complete the form !")
						thisform.c13.focus()
						return false
			}
					//ETA
					if (thisform.c14.value == "")
			{
						alert("Please complete the form !")
						thisform.c14.focus()
						return false
			}
					//Flight departure
					if (thisform.c15.value == "")
			{
						alert("Please complete the form !")
						thisform.c15.focus()
						return false
			}
					//ETD
					if (thisform.c16.value == "")
			{
						alert("Please complete the form !")
						thisform.c16.focus()
						return false
			}
		}
		//Name
		if (thisform.c18.value == "")
		{
				alert("Please complete the form !")
				thisform.c18.focus()
				return false
		}
		//Email
		if (thisform.c19.value == "")
		{
				alert("Please complete the form !")
				thisform.c19.focus()
				return false
		}
		//Country
		if (thisform.c24.value == "")
		{
				alert("Please complete the form !")
				thisform.c24.focus()
				return false
		}
		
		
	}
