function initCalendario(objCal,func,formato_data,cambia_anno_mese) {var bln_chg_anno_mese=false;if(cambia_anno_mese!=null&&cambia_anno_mese!=void(0)&&cambia_anno_mese!='') bln_chg_anno_mese=true;if(formato_data==null||formato_data==void(0)||formato_data=='') formato_data='dd-mm-yy';objCal.datepicker({dateFormat:formato_data,constrainInput:false,firstDay:1,dayNames:['Domenica','Lunedi','Martedi','Mercoledi','Giovedi','Venerdi','Sabato'],dayNamesMin:['Dom','Lun','Mar','Mer','Gio','Ven','Sab'],monthNames:['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno','Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'],monthNamesShort:['Gen','Feb','Mar','Apr','Mag','Giu','Lug','Ago','Set','Ott','Nov','Dic'],changeMonth:bln_chg_anno_mese,changeYear:bln_chg_anno_mese,yearRange:'1900:c+10',onSelect:func});return objCal;} function showCalendario(objCal) {objCal.datepicker('show');}