jour = new Array();
jour[0]='Dimanche';
jour[1]='Lundi';
jour[2]='Mardi';
jour[3]='Mercredi';
jour[4]='Jeudi';
jour[5]='Vendredi';
jour[6]='Samedi';
mois = new Array();
mois[0]='Janvier';
mois[1]='Février';
mois[2]='Mars';
mois[3]='Avril';
mois[4]='Mai';
mois[5]='Juin';
mois[6]='Juillet';
mois[7]='Août';
mois[8]='Septembre';
mois[9]='Octobre';
mois[10]='Novembre';
mois[11]='Décembre';

var my_date= new Date();

var year=my_date.getYear();
if (year < 2000) year=year+1900;
var month=my_date.getMonth();
var day=my_date.getDay();
var date=my_date.getDate();
document.write("<span class=\"hautsom\"><font color=\"#FFFFFF\">");
//document.write(jour[day] + " " + date + " " + mois[month] + " " + year);
document.write(date + " " + mois[month] + " " + year);
document.write("</font></span>");