function Booking(){
	var conf = confirm("Not ready! Contact us?");
	if(conf == true){
		document.location.href='contact.html';	
	}
	else{
		return false;	
	}
}
