<!--
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- 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)
// -->
