/*
les tableaux qui suivent permettent l'affichage en français de la date
*/

var theDay= new Array(7);
{
theDay[0]="Dimanche";
theDay[1]="Lundi";
theDay[2]="Mardi";
theDay[3]="Mercredi";
theDay[4]="Jeudi";
theDay[5]="Vendredi";
theDay[6]="Samedi";
}

var theMonth =new 
Array("janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre");

/*
creation d'un nouvel objet date avec la date courante par défaut
*/
var today=new Date();

function writeDate()
{
document.write(theDay[today.getDay()],"  ",today.getDate(),"  ",theMonth[today.getMonth()],"  ",today.getFullYear());
};
writeDate();