function date_ddmmmyy(date){var d=date.getDate();var m=date.getMonth()+1;var y=date.getYear();if(y>=2000){y-=2000}if(y>=100){y-=100}var mmm=(1==m)?'Gen':(2==m)?'Feb':(3==m)?'Mar':(4==m)?'Apr':(5==m)?'Mag':(6==m)?'Gui':(7==m)?'Lug':(8==m)?'Ago':(9==m)?'Set':(10==m)?'Ott':(11==m)?'Nov':'Dic';return""+(d<10?"0"+d:d)+"-"+mmm+"-"+(y<10?"0"+y:y)}
function date_lastmodified(){var lmd=document.lastModified;var s="Unknown";var d1;if(0!=(d1=Date.parse(lmd))){s=""+date_ddmmmyy(new Date(d1))}return s}
document.write(date_lastmodified());
