 
          function lastUpdate(){ 
        lastUpdate=new Date(document.lastModified); 
        lastUpdate_year=lastUpdate.getYear(); 
        if (lastUpdate_year<1000){                              //just in case date is delivered with 4 digits 
                if (lastUpdate_year<70){ 
                lastUpdate_year=2000+lastUpdate_year; 
                } 
                else lastUpdate_year=1900+lastUpdate_year; 
        }                                                               //end workaround 
        lastUpdate_month=lastUpdate.getMonth()+1; 
        if (lastUpdate_month<10){ 
                lastUpdate_month='0'+lastUpdate_month; 
        } 
        lastUpdate_day=lastUpdate.getDate(); 
        if (lastUpdate_day<10){ 
                lastUpdate_day='0'+lastUpdate_day; 
        } 
        document.write("Dern. modif. : " + lastUpdate_day+'-'+lastUpdate_month+'-'+lastUpdate_year); 
                document.close() 
           } 
      
