/*

Dependencies:
 - jQuery
 - jQuery UI

*/

// setup CEA object

var CEA = {};

// CEA popup dialog

CEA.popup = function (name, title, body, handler) {
	$('body').append('<div id="' + name + '" class="dialog" title="' + title + '">' + body + '</div>');
	$('#' + name).dialog({
		'bgiframe': true,
		'draggable': false,
		'resizable': false,
		'modal': true,
		'width': 500,
		'close': function () {
			$(this).dialog('destroy');
			$('#' + name).remove();
		},
		'buttons': {
			'Ok': function () {
				if ( handler() ) {
					$(this).dialog('destroy');
					$('#' + name).remove();
				}
			},
			'Cancel': function () {
				$(this).dialog('destroy');
				$('#' + name).remove();
			}
		}
	});
};
