// JScript File
jQuery(document).ready(function () {
//
    jQuery("body").append('<div id="mod1"></div>');

    
    jQuery("#mod1").dialog({
        bgiframe: true,
        autoOpen: false,
        width: 900,
        height: 580,
        closeOnEscape: true,
        modal: true,
        resizable: false,
        draggable: false
    });
    
})

function modale1(){
    jQuery("#mod1").load("mattone_crudo.htm?nocache=" + new Date().getTime(),'',function(){
        jQuery("#mod1").dialog('open');
    });
}

function chiudimodale1(){
    jQuery("#mod1").dialog('close');
}
