<!-- Begin
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]="AOUT";
months[9]="SEPTEMBRE";
months[10]="OCTOBRE";
months[11]="NOVEMBRE";
months[12]="DECEMBRE";
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(date + " " + lmonth + " " + year);
document.write(" - ");
document.write(Date( ).substring(10,16) + "</center>");
// End -->





