 <!-- 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]="August";
        months[9]="Septembre";
        months[10]="Octobre";
        months[11]="Novembre";
        months[12]="Decembre";
        var time=new Date();
		var date=time.getDate();
        var lmonth=months[time.getMonth() + 1];
        var year=time.getYear();
           if (year < 2000)    // Y2K Fix, Isaac Powell
               year = year + 1900; // http://onyx.idbsu.edu/~ipowell
              document.write("<B>" + date + "</B> ");
              document.write("<B>" + lmonth + ", " + year + "</B></left>");
 // End -->