/* date-day.js */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é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("Aout");}if (day == 8){document.write("Septembre");}if (day == 9){document.write("Octobre");}if (day == 10){document.write("Novembre");}if (day == 11){document.write("Décembre");}document.write(" 2010");