﻿$(document).ready(function() {
	$('#couponDialog').dialog({
		autoOpen: false,
		width: 562,
		height: 400,
		resizable: false,
		modal: true,
		close: function() {
			$('#couponDialog').html('');
		}
	});
});

function openCouponDialog() {
	var $destination = getDestination();
	var url = '/MapsContentOnly.aspx?dest_id=' + $destination.val();
	var iframe = '<iframe id="couponFrame" frameborder="0" width="100%" height="100%" src="' + url + '"></iframe>';

	$('#couponDialog').append(iframe);
	$('#couponDialog').dialog('option', 'title', $destination.text() + ' Coupons and Maps');
	$('#couponDialog').dialog('open');
}