var today = new Date();
var AfficheDate = "";

jj = today.getDay();
if (jj == 0) AfficheDate = "Dimanche " +today.getDate();
if (jj == 1) AfficheDate = "Lundi " +today.getDate();
if (jj == 2) AfficheDate = "Mardi " +today.getDate();
if (jj == 3) AfficheDate = "Mercredi " +today.getDate();
if (jj == 4) AfficheDate = "Jeudi " +today.getDate();
if (jj == 5) AfficheDate = "Vendredi " +today.getDate();
if (jj == 6) AfficheDate = "Samedi " +today.getDate();

mm = today.getMonth();

//yy=1900+today.getYear();
yy=today.getYear();
if (yy < 2000) yy = 1900 + yy;
if (mm == 0) AfficheDate = AfficheDate+" janvier "+yy
if (mm == 1) AfficheDate = AfficheDate+" février "+yy
if (mm == 2) AfficheDate = AfficheDate+" mars "+yy
if (mm == 3) AfficheDate = AfficheDate+" avril "+yy
if (mm == 4) AfficheDate = AfficheDate+" mai "+yy
if (mm == 5) AfficheDate = AfficheDate+" juin "+yy
if (mm == 6) AfficheDate = AfficheDate+" juillet "+yy
if (mm == 7) AfficheDate = AfficheDate+" août "+yy
if (mm == 8) AfficheDate = AfficheDate+" septembre "+yy
if (mm == 9) AfficheDate = AfficheDate+" octobre "+yy
if (mm == 10) AfficheDate = AfficheDate+" novembre "+yy
if (mm == 11) AfficheDate = AfficheDate+" décembre "+yy
document.write(AfficheDate);
