// JavaScript for Accommodation page

function openWin(bpage){
window.open(bpage,'application','top=0,left=30,width=720,height=550,menubar=no,toolbar=no,location=yes,status=yes,resizable=yes,scrollbars=yes');
}


function openMap(bpage){
window.open(bpage,'','top=0,left=30,width=730,height=550,menubar=no,toolbar=no,location=no,status=no,resizable=no,scrollbars=yes');
}


function open_url(item_id)
		{
			var url_;
			url_ = 'HotelDesc.aspx?HID=' + item_id;
			window.open(url_, "open_window", "open_window, top=0, left=100, width=630, height=600, toolbar=0, scrollbars=1, status=0, menubar=0, location=0, resizable=0");
		}
		

