/* hide from old browsers */
var months = new Array();
months[0] = "Janvier";
months[1] = "Février";
months[2] = "Mars";
months[3] = "Avril";
months[4] = "Mai";
months[5] = "Juin";
months[6] = "Juillet";
months[7] = "Août";
months[8] = "Septembre";
months[9] = "Octobre";
months[10] = "Novembre";
months[11] = "Decembre";

var days = new Array();
days[0] = "Dimanche";
days[1] = "Lundi";
days[2] = "Mardi";
days[3] = "Mercredi";
days[4] = "Jeudi";
days[5] = "Vendredi";
days[6] = "Samedi";

function printPage(){window.print()}
/* end hiding */
var now = new Date();
document.write(days[now.getDay()] + " " + now.getDate() + " " + months[now.getMonth()]);
