function checkform() {
	var send=document.getElementById('send').value;
	if (send=='0') {
		return false;
	}
}
function sendform() {
	document.getElementById('send').value=1;
	document.bookingform.submit();
}
