function aggiornaDataModuloFusion(){
d = new Date();
giorno = d.getDate();
mese = (d.getMonth() + 1) >= 10 ? (d.getMonth() + 1) : (d.getMonth() + 1);

anno =  d.getFullYear();
document.forms[0].giorno.value=giorno;
document.forms[0].mese.value=mese;
document.forms[0].anno.value=anno;

}

