﻿
$(document).ready(function() {
$(".ui-widget-overlay").live("click", function() {  $("#infoPopup").dialog("close"); } );

	$(".infoLayerTrigger").click(function() {
	
		var id = $(this).attr("id");
		if (id != null) {
			if ($("#infoPopup").html() == null || $("#infoPopup").html() == "") {
				$("body").append('<div id="infoPopup" style="display:none"></div>');
				$("#infoPopup").load("http://localhost/MidwestAirlines/ContentLoader.aspx?id=" + id);
				$("#infoPopup").dialog({
					autoOpen: false,
					height: 251,
					width: 386,
					maxHeight: 300, 
					maxWidth: 400,
					closeText: 'close',
					modal: true
				});
			}
			
			$("#infoPopup").dialog('open');
		}
	});
	
	
});