 $(document).ready(function(){
    for(x=1; x<=10;x++){
      $("#data_"+x).datepicker({ dateFormat: 'yy-mm-dd',changeMonth: true, changeYear: true , monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu','Lug','Ago','Set','Ott','Nov','Dic'], yearRange: '1960:2000', dayNamesMin: ['Do', 'Lu', 'Ma', 'Me', 'Gi', 'Ve', 'Sa'] });
    }
    
    fillDate();
    
    /* Anteprima Media */        
    $("#dialogAlert").dialog({ bgiframe: true, autoOpen: false,resizable: true,modal: true,buttons: {Ok: function() {$(this).dialog('close');}}});
    $("#dialogPrivacy").dialog({bgiframe: true,	autoOpen: false,resizable: true,height:'auto',minHeight: 20, width: 800,	modal: true,verlay: {backgroundColor: '#0CC',	opacity: 0.5 }});
    
    
    
    
    
    
    
   });


function scaricapdf(filename)
{     
     tempWindow = window.open(x,'','left=10000,screenX=10000');         
     tempWindow.document.execCommand('SaveAs','null',filename);     
     tempWindow.close(); 
} 

