		//<![CDATA[
			function valForm(oForm){
			if(!oForm.firstName.value){alert('Please enter your first name');oForm.firstName.focus();return false;}
			if(!oForm.surName.value){alert('Please enter your surname');oForm.surName.focus();return false;}
			if(!oForm.email.value){alert('Please enter your email');oForm.email.focus();return false;}
			if(oForm.email.value){if(!checkEmail(oForm.email.value) ){alert('Invalid email address');oForm.email.focus();return false;}}
			if(!checkDate('Start')	){alert('Booking date is in the past');oForm.StartDay.focus();return false;}
			return true;}
		//]]>