﻿$(document).ready(function() {
	$('#hotelDialog').dialog({
		autoOpen: false,
		width: 725,
		height: 760,
		resizable: false,
		modal: true,
		close: function() {
			$('#hotelDialog').html('');
		}
	});});

function openHotelDialog(title, hotelGroupID, hotelID, checkin, tab) {
	var url = '/HotelDetails.aspx?';
	if (hotelGroupID > 0)
		url += 'hotelGroup_id=' + hotelGroupID;
	if (hotelID > 0)
		url += 'hotel_id=' + hotelID;
	if (checkin > 0)
		url += '&checkin=' + checkin;
	if (tab)
		url += '&tab=' + tab;

	var iframe = '<iframe id="hotelDetails" frameborder="0" width="100%" height="100%" src="' + url + '"></iframe>';

	$('#hotelDialog').append(iframe);
	$('#hotelDialog').dialog('option', 'title', title);
	$('#hotelDialog').dialog('open');
}