var date_statement="";
var time_statement="";
var today=new Date();
var month="";
var day="";
function todays_date() {
var month=today.getMonth();
var day_of_week=today.getDay();
date_statement=""
document.month=""
month++; 
if(month==1) {
document.month="Janvier ";
}
if(month==2) {
document.month="Fevrier ";
}
if(month==3) {
document.month="Mars ";
}
if(month==4) {
document.month="Avril ";
}
if(month==5) {
document.month="Mai ";
}
if(month==6) {
document.month="Juin ";
}
if(month==7) {
document.month="Juillet ";
}
if(month==8) {
document.month="Aout ";
}
if(month==9) {
document.month="Septembre ";
}
if(month==10) {
document.month="Octobre ";
}
if(month==11) {
document.month="Novembre ";
}
if(month==12) {
document.month="Decembre ";
}
document.day=""
if(day_of_week==0)
document.day=" Dimanche";
if(day_of_week==1)
document.day=" Lundi";
if(day_of_week==2)
document.day=" Mardi";
if(day_of_week==3)
document.day=" Mercredi";
if(day_of_week==4)
document.day=" Jeudi";
if(day_of_week==5)
document.day=" Vendredi";
if(day_of_week==6)
document.day=" Samedi";
}


todays_date();
document.writeln(time_statement+document.day+" "+today.getDate()+" "+document.month)
