Spounz = new Date();
Spounz2 = Spounz.getYear()+1900;
if (Spounz.getMonth() == 0) {Month = "janvier";}
if (Spounz.getMonth() == 1) { Month = "f&eacute;vrier";}
if (Spounz.getMonth() == 2) { Month = "mars";}
if (Spounz.getMonth() == 3) { Month = "avril";}
if (Spounz.getMonth() == 4) { Month = "mai";}
if (Spounz.getMonth() == 5) { Month = "juin";}
if (Spounz.getMonth() == 6) { Month = "juillet";}
if (Spounz.getMonth() == 7) { Month = "ao&ucirc;t";}
if (Spounz.getMonth() == 8) { Month = "septembre";}
if (Spounz.getMonth() == 9) { Month = "octobre";}
if (Spounz.getMonth() == 10) { Month = "novembre";}
if (Spounz.getMonth() == 11) { Month = "d&eacute;cembre";}
if ((navigator.appName=="Netscape")&&
(parseInt(navigator.appVersion)>=3)){
document.write(Spounz.getDate() + " " + Month + " " + Spounz2 + "&nbsp;&nbsp;&nbsp;");
}
else {
document.write(Spounz.getDate() + " " + Month + " " + Spounz.getYear() + "&nbsp;&nbsp;&nbsp;");
}

var Hours;
var Mins;
Hours = Spounz.getHours();
Mins = Spounz.getMinutes();
if (Mins < 10) {
 Mins = "0" + Mins;
}
document.write(Hours + ":" + Mins);
