<!--				
	function bValidationCheck(){
		if (
			(bCheckMandatory(document.forms[1].Title,'Title')) &&
			(bCheckMandatory(document.forms[1].Firstname,'First Name')) &&
			(bCheckMandatory(document.forms[1].Surname,'Surname')) &&
			(bCheckMandatory(document.forms[1].Address1,'Street Address Line 1')) &&
			(bCheckMandatory(document.forms[1].Suburb,'Suburb')) &&
			(bCheckMandatory(document.forms[1].sState,'State')) &&
			(bCheckMandatory(document.forms[1].Postcode,'Postcode')) &&
			(bCheckMandatory(document.forms[1].Country,'Country')) &&
			(bCheckMandatory(document.forms[1].Email,'Email')) &&
			(bCheckEmail(document.forms[1].Email,'Email')) &&
			(bCheckMandatory(document.forms[1].Phone,'Main Phone')) &&
			(bCheckMandatory(document.forms[1].NumberAdults,'Number Of Adults')) &&
			(bCheckMandatory(document.forms[1].NumberChildren,'Number Of Children')) &&
			(bCheckMandatory(document.forms[1].Resort,'Resort')) &&
			(bCheckMandatory(document.forms[1].Roomtype,'Room Type')) &&
			(bCheckMandatory(document.forms[1].ArrivalDate,'Arrival Date')) &&
			(bCheckMandatory(document.forms[1].DepartureDate,'Departure Date')) &&
			(bCheckMandatory(document.forms[1].RoomConfiguration,'Room Configuration'))
		)
		{
			return true;
		}else
		{
			return false;
		}
	}
-->