d = new Date();
theday = new String();
themonth = new String();
theyear =  new String();
if ( d.getDay() == 0) { theday="Dimanche";}
if ( d.getDay() == 1) { theday="Lundi";}
if ( d.getDay() == 2) { theday="Mardi";}
if ( d.getDay() == 3) { theday="Mercredi";}
if ( d.getDay() == 4) { theday="Jeudi";}
if ( d.getDay() == 5) { theday="Vendredi";}
if ( d.getDay() == 6) { theday="Samedi";}
if ( d.getMonth() == 0) { themonth="Janvier";}
if ( d.getMonth() == 1) { themonth="F&eacute;vrier";}
if ( d.getMonth() == 2) { themonth="Mars";}
if ( d.getMonth() == 3) { themonth="Avril";}
if ( d.getMonth() == 4) { themonth="Mai";}
if ( d.getMonth() == 5) { themonth="Juin";}
if ( d.getMonth() == 6) { themonth="Juillet";}
if ( d.getMonth() == 7) { themonth="Ao&ucirc;t";}
if ( d.getMonth() == 8) { themonth="Septembre";}
if ( d.getMonth() == 9) { themonth="Octobre";}
if ( d.getMonth() == 10) { themonth="Novembre";}
if ( d.getMonth() == 11) { themonth="D&eacute;cembre";}
var DateSystem = theday + '&#160;';
DateSystem += d.getDate() + '&#160;';
DateSystem += themonth + '&#160;';
DateSystem += d.getFullYear() + '&#160;';
document.write(DateSystem);
