function displayDate() {
	var months = new Array(12);
	months[0] = "Janvier";
	months[1] = "F&eacute;vrier";
	months[2] = "Mars";
	months[3] = "Avril";
	months[4] = "May";
	months[5] = "Juin";
	months[6] = "Juillet";
	months[7] = "Ao&ucirc;t";
	months[8] = "Septembre";
	months[9] = "Octobre";
	months[10] = "Novembre";
	months[11] = "D&eacute;cembre";
	var time=new Date();
	//var lmonth=months[time.getMonth() + 1];
	var lmonth=months[time.getMonth()];
	var date=time.getDate();
	var year=time.getYear();
	if (year < 2000) {
		year = year + 1900;
	}
	document.write(lmonth + " " + date + ", " + year);
}