<!--
function fonction_date ()
{
	var now = new Date();
	var mName = now.getMonth() + 1;
	var dName = now.getDay() + 1;
	var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();
	if(dName==1) Day = "Dimanche";
	if(dName==2) Day = "Lundi";
	if(dName==3) Day = "Mardi";
	if(dName==4) Day = "Mercredi";
	if(dName==5) Day = "Jeudi";
	if(dName==6) Day = "Vendredi";
	if(dName==7) Day = "Samedi";
	if(mName==1) Month="Janvier";
	if(mName==2) Month="Février";
	if(mName==3) Month="Mars";
	if(mName==4) Month="Avril";
	if(mName==5) Month="Mai";
	if(mName==6) Month="Juin";
	if(mName==7) Month="Juillet";
	if(mName==8) Month="Août";
	if(mName==9) Month="Septembre";
	if(mName==10) Month="Octobre";
	if(mName==11) Month="Novembre";
	if(mName==12) Month="Décembre";
	year = now.getFullYear ()
	var todaysDate =(" " + Day + "<br>" + dayNr + " " + Month + " " + year);
	document.open();
	document.write(todaysDate);
}
//-->