// JavaScript Document

function Tableau(n) {
this.length=n;
return this; }
function DateModif() {
NomMois=new Tableau(12)
NomMois[1]="Gennaio"
NomMois[2]="Febbraio"
NomMois[3]="Marzo"
NomMois[4]="Aprile"
NomMois[5]="Maggio"
NomMois[6]="Giugno"
NomMois[7]="Luglio"
NomMois[8]="Agosto"
NomMois[9]="Settembre"
NomMois[10]="Ottobre"
NomMois[11]="Novembre"
NomMois[12]="Dicembre"
Date=new Date(document.lastModified)
var Mois=NomMois[Date.getMonth()+1]
var Annee=Date.getFullYear()
return Date.getDate()+" "+Mois+" "+Annee }

