function bookingsubmit(obj){

	if(obj.elements){

		if(document.forms['gobook'].elements['taccept'].checked == true){
			return true;
		}
		else{
			alert('Please read and accept the terms and conditions before continuing');
			return false;
		}
		

	}


}

