<!--
	function openBrWindow(theURL) {
  		window.open(theURL,'media','width=650,height=400');
		}
	function openMapWindow(theURL) {
  		window.open(theURL,'map','width=720,height=630');
		}
	function openBookingWindow(theURL) {
  		window.open(theURL,'map','width=650,height=500');
		}
	function BookCottage(id)    {
        id=id+'';
        window.opener.location=("/booking/Default.aspx?ID=" + id);
        window.self.close();
        }
	function EnquireContact(id)    {
        id=id+'';
        window.opener.location=("/contact-us/Default.aspx?ID=" + id);
        window.self.close();
        }
//-->