// ** javascript file for calendar confirmation...

// function to move to the next image
function confirmDate(selDate) {
	var answer = confirm ("Do you wish to book now?")
	if (answer)
	{
		//alert ("Well John, you'll just have to wait a few more minutes.")
		location.href="booking.php?coursedateid="+selDate;

	}
	else
	{
		//alert ("Good, I don't have to do anything.")
	}
}