var months=new Array(13);   
months[1]="Janvier";
months[2]="Fevrier";
months[3]="Mars";
months[4]="Avril";
months[5]="Mai";
months[6]="Juin";
months[7]="Juillet";
months[8]="Août";
months[9]="Sept";
months[10]="Oct";
months[11]="Nov";
months[12]="Déc";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
document.write("<div align=right class=date>" + date + " ");
document.write(lmonth + ", " + year + "</div>");
// End -->
