function MakeArray(n){
		this.length=n;
		return this
		}

function AfficheDate () {
	
	nom_mois=new MakeArray(12);
	nom_mois[1]="January"
	nom_mois[2]="February"
	nom_mois[3]="March"
	nom_mois[4]="April"
	nom_mois[5]="May"
	nom_mois[6]="June"
	nom_mois[7]="July"
	nom_mois[8]="August"
	nom_mois[9]="September"
	nom_mois[10]="October"
	nom_mois[11]="November"
	nom_mois[12]="December"

	ltime = new Date(document.lastModified);
	lyear = 2001;
	var ltext = nom_mois[ltime.getMonth()+1]+" "+ ltime.getDate() + ", "+ lyear;
		
	document.write ("Last updated : April 15th, 2001");

}