
function fncBookingForm()
	{
	var book = window.open('Booking.asp', 'book', 'toolbar=yes,location=no,resizable=yes,scrollbars=yes,top=35,left=35,height=500,width=650');

	if(book) 
		{book.focus;} 
	else 
		{alert('A pop-up blocker has prevented the booking form from opening, please disable the blocker, and try again.');}
	}

function fncCal()
	{
	var Cal = window.open('Calendar.asp', 'Cal', 'toolbar=no,location=no,resizable=yes,scrollbars=yes,top=10,left=10,height=530,width=650');

	if(Cal) 
		{Cal.focus;} 
	else 
		{alert('A pop-up blocker has prevented the room availability form from opening, please disable the blocker, and try again.');}
	}
	