// JavaScript Document
<!--
function Semaine(){
this[0] = "Dimanche";
this[1] = "Lundi";
this[2] = "Mardi";
this[3] = "Mercredi";
this[4] = "Jeudi";
this[5] = "Vendredi";
this[6] = "Samedi";
}
function Mois(){
this[0] = "janvier";
this[1] = "f&eacute;vrier";
this[2] = "mars";
this[3] = "avril";
this[4] = "mai";
this[5] = "juin";
this[6] = "juillet";
this[7] = "aout";
this[8] = "septembre";
this[9] = "octobre";
this[10] = "novembre";
this[11] = "d&eacute;cembre";
}
function DateDuJour(){
var semaine = new Semaine();
var mois = new Mois();
var myDate = new Date();
document.writeln(semaine[myDate.getDay()]+" "+myDate.getDate()+" "+mois[myDate.getMonth()]+" "+myDate.getFullYear());
}
// -->
