	function Affiche_Date(){
	//<!-- Hide from old browsers
		 	now = new Date();
			day = new Object();
			month = new Object();
			day[0] = "Dimanche";
			day[1] = "Lundi";
			day[2] = "Mardi";
			day[3] = "Mercredi";
			day[4] = "Jeudi";
			day[5] = "Vendredi";
			day[6] = "Samedi";
			month[0] = "janv.";
			month[1] = "fév.";
			month[2] = "mars";
			month[3] = "avril";
			month[4] = "mai";
			month[5] = "juin";
			month[6] = "juil.";
			month[7] = "août";
			month[8] = "sept.";
			month[9] = "oct.";
			month[10] = "nov.";
			month[11] = "déc.";
			year = now.getYear();
			if (year < 1000) year += 1900;
			// document.write(day[now.getDay()] + ", " + month[now.getMonth()] + " " + now.getDate() + " " +  year);
			document.write('<font color=red>'+day[now.getDay()] + ", " + now.getDate() + " " + month[now.getMonth()] + " " +  year+'</font>');
			// Stop Hiding From Old Browsers -->
	}					
