function showBooking(id, name, type, a, adultPrice) {
		if(!a.isBooked) {
			a.isBooked = true;
			var rand = Math.ceil(1000000*Math.random());
			var swf = new FlashObject("booking/swf/flash.swf?temp=" + rand, "animationSwf", "800", "950", "8", "#000000");
			swf.addVariable("movieName", name);
			swf.addVariable("movieId", id);
			swf.addVariable("type", type);
			swf.addVariable("adultTicketPrice", adultPrice);
			swf.write("booking");
			document.getElementById("booking").style.display = "block";
			location.href = "#booking";	
		} else {
			a.isBooked = false;
			document.getElementById("booking").innerHTML = "";
		}
}
