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("/01");} 
if (day == 1){document.write("/02");} 
if (day == 2){document.write("/03");} 
if (day == 3){document.write("/04");} 
if (day == 4){document.write("/05");} 
if (day == 5){document.write("/06");} 
if (day == 6){document.write("/07");} 
if (day == 7){document.write("/08");} 
if (day == 8){document.write("/09");} 
if (day == 9){document.write("/10");} 
if (day == 10){document.write("/11");} 
if (day == 11){document.write("/12");} 
document.write("/10");