<!--conception et réalisation par Jacques Pioton-->

function Tableau(n) {
    this.length=n;
    return this; }
function DateModif() {
    NomMois=new Tableau(12);
    NomMois[1]="enero";
    NomMois[2]="febrero";
    NomMois[3]="marzo";
    NomMois[4]="april";
    NomMois[5]="mayo";
    NomMois[6]="junio";
    NomMois[7]="julio";
    NomMois[8]="agosto";
    NomMois[9]="septiembre";
    NomMois[10]="octubre";
    NomMois[11]="noviembre";
    NomMois[12]="diciembre";
    Date=new Date(document.lastModified)
    var Mois=NomMois[Date.getMonth()+1]
    var Annee=Date.getYear()+00
    return Date.getDate()+" "+Mois+" "+Annee }