$(function(){

	$.extend($.ui.dialog.defaults, {
		width: 600,
		height: 500,
		resizable: false,
		modal: true,
		buttons: {
			"Close": function(){ $(this).dialog('close'); }
		}
	});

});
