function displayDate() 
{
Todays = new Date();
Mnth = Todays.getMonth()+ 1;
if (Mnth == 1) {
        Month = "janvier";
}
if (Mnth == 2) {
	Month = "février";
}
if (Mnth == 3) {
	Month = "mars";
}
if (Mnth == 4) {
	Month = "avril";
}
if (Mnth == 5) {
	Month = "mai";
}
if (Mnth == 6) {
	Month = "juin";
}
if (Mnth == 7) {
	Month = "juillet";
}
if (Mnth == 8) {
	Month = "août";
}
if (Mnth == 9) {
	Month = "septembre";
}
if (Mnth == 10) {
	Month = "octobre";
}
if (Mnth == 11) {
	Month = "novembre";
}
if (Mnth == 12) {
	Month = "décembre";
}
TheDate = " "+ Todays.getDate() + " " + Month +"  " + Todays.getFullYear()+ " "
return (TheDate);
}
document.write (displayDate());


 




 




