
			var chd = new Date(document.lastModified);
			var month=new Array(12)
			month[0]="janvier"
			month[1]="f&eacute;vrier"
			month[2]="mars"
			month[3]="avril"
			month[4]="mai"
			month[5]="juin"
			month[6]="juillet"
			month[7]="ao&ucirc;t"
			month[8]="septembre"
			month[9]="octobre"
			month[10]="novembre"
			month[11]="d&eacute;cembre"
			date = ((chd.getDate())+" "+month[(chd.getMonth())] +" "+chd.getFullYear());
			document.write(date)