function AffichageDate()
	{
	  var thisday=new Date();
	  var day=thisday.getDay();
	  if (day == 0){document.write("Dimanche");}
	  if (day == 1){document.write("Lundi");}
	  if (day == 2){document.write("Mardi");}
	  if (day == 3){document.write("Mercredi");}
	  if (day == 4){document.write("Jeudi");}
	  if (day == 5){document.write("Vendredi");}
	  if (day == 6){document.write("Samedi");}
	  document.write("  "+thisday.getDate()+" ");
	  var day=thisday.getMonth();
	  if (day == 0){document.write("janvier");}
	  if (day == 1){document.write("f&eacute;vrier");}
	  if (day == 2){document.write("mars");}
	  if (day == 3){document.write("avril");}
	  if (day == 4){document.write("mai");}
	  if (day == 5){document.write("juin");}
	  if (day == 6){document.write("juillet");}
	  if (day == 7){document.write("ao&ucirc;t");}
	  if (day == 8){document.write("septembre");}
	  if (day == 9){document.write("octobre");}
	  if (day == 10){document.write("novembre");}
	  if (day == 11){document.write("d&eacute;cembre");}
	  //document.write(" " +thisday.getFullYear());
	}
