/*
	Opens the booking window
*/
function openBooking(){
	myWindow = window.open("bokning.html", "tinyWindow", 'width=500,height=700');
	myWindow.document.write("<h1>Boka rum</h1>");
	myWindow.document.bgColor="#ffffff";
	myWindow.document.close();
}


