
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]="Abril" 
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()
return Date.getDate()+" "+ "de" +" "+Mois+" "+ Annee }



