﻿function OpenBookingForm(url)
{
		var page = window.open(url, 'bookingform', 'scrollbars=yes, width=770px, height=570px');

		if (page != null) {
				page.focus();
		}
}

function OpenRequestForm(url) {
 window.location = url;
}
