window.onload = function() {
	var reservationLink = document.getElementById('reservations');
	reservationLink.onclick = function() {
		window.open('https://secure.guestdesk.com/rooms/?id=344','RoomReservations','toolbar=no,scrollbars=auto,location=no,resizable=no,directories=no,status=yes,menubar=no,width=790,height=450,screenX=1,screenY=1,top=1,left=1');
		return false;
	}
	var pops = document.getElementById('sidebar').getElementsByTagName('a');
	for (var i=0; i<pops.length; i++) {
		pops[i].onclick = function() {
			window.open(this.href, 'MeetingStreetInnMedia', 'width=500,height=390');
			return false;
		}
		
	}
	try { loadmap(); }
	catch(err) { }
}

window.onunload = function() {
	try { GUnload(); }
	catch(err) { }
}