$(document).ready(function()
{
	$('#error_dialog').dialog({
		
		autoOpen: false, 
		buttons: {
			'Chiudi' : function(){
				$(this).dialog('close');
			}
		}, 
		modal: true, 
		draggable: false, 
		resizable: false,
		closeOnEscape: false,
		show: 'slide',
		stack: false,
		width: 570
	});
});