		
	function bValidationCheck(){
		if (
			(bCheckMandatory(document.forms[1].sName,'Name')) &&
			(bCheckMandatory(document.forms[1].Surname,'Surname')) &&
			(bCheckMandatory(document.forms[1].CompanyName,'Company')) &&
			(bCheckEmail(document.forms[1].Email,'Email')) &&
			(bCheckMandatory(document.forms[1].Phone,'Phone')) &&		
			(bCheckMandatory(document.forms[1].PostalAddress1,'Address')) &&
			(bCheckMandatory(document.forms[1].Suburb,'Suburb')) &&
			(bCheckMandatory(document.forms[1].sState,'State')) &&
			(bCheckMandatory(document.forms[1].Postcode,'Postcode')) &&
			(bCheckMandatory(document.forms[1].GroupName,'Group Name')) &&
			(bCheckMandatory(document.forms[1].EventType,'Event Type')) &&
			(bCheckMandatory(document.forms[1].ArrivalDate,'Estimated Arrival Date')) &&
			(bCheckMandatory(document.forms[1].DepartureDate,'Estimated Depature Date')) &&
			(bCheckMandatory(document.forms[1].Accommodation,'Property/s Required')) &&
			(bCheckMandatory(document.forms[1].Delegates,'Number of Delegates')) && 
			(bCheckMandatory(document.forms[1].sSecurityCode,'Secuirty Code'))
		)
		{
			return true;
		}else
		{
			return false;
		}
	}
