// JavaScript Document



<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var months=new Array(13);
months[1]="janvier";
months[2]="f&eacute;vrier";
months[3]="mars";
months[4]="avril";
months[5]="mai";
months[6]="juin";
months[7]="juillet";
months[8]="ao&ucirc;t";
months[9]="septembre";
months[10]="octobre";
months[11]="novembre";
months[12]="d&eacute;cembre";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
document.write("" + lmonth + " ");
document.write(date + ", " + year + "");
// End -->

