$(document).ready(function(){
	$('#sail').dialog({
		autoOpen: false, 
		modal: true, 
		resizable: false, 
		draggable: false, 
		width: 420, 
		height: 420, 
		buttons: {
			'Ok' : function(){
				$(this).dialog('close');
			}
		}, 
		open: function(event, ui) { 
			$('#sail').html('<div style="width:100%;height:100%;text-align:center;vertical-align:middle"><img src="/img/loading.gif" alt="" />Caricamento...<div>');
			$.ajax({
				type: "GET",
				url: "/dialog/sconti1",
				dataType: 'html', 
				success: function(html) {
					$('#sail').html(html);
				}, 
				error: function(html){
					$('#sail').html('<div style="width:100%;height:100%;text-align:center;vertical-align:middle"><img src="/img/loading.gif" alt="" />Caricamento Fallito<div>');
				}
			});
		}
	});
});
