/* auteur: Jmd */
/* Date de création: 01/02/2011 */
<!-- hide script from old browsers
// Modified by jm
function process(){}
  today = new Date()
  if(today.getMinutes() < 10) {
    pad = "0"}
  else
    pad = "";
 	if(today.getMonth() < 10) {
    pad2 = "0"}
  else
    pad2 = "";
		if(today.getDate() < 10) {
    pad3 = "0"}
  else
    pad3 = "";
  if((today.getHours() < 12) && (today.getHours() >= 6))
  {  document.write("<b>Bonjour !</b><BR>")}
  if((today.getHours() >= 12) && (today.getHours() < 18))
  {  document.write("<b>Bon après-midi</b><BR>")}
  if((today.getHours() >= 18) && (today.getHours() <= 23))
  {  document.write("<b>Bonne soirée</b><BR>")}
  if((today.getHours() >= 0) && (today.getHours() < 4))
  {  document.write("<b>Bonne nuit</b><BR>")}
  if((today.getHours() >= 4) && (today.getHours() <= 6))
  {  document.write("<b>Bonne journée!</b><BR>")}
  document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Il est : ",today.getHours(),"h ",pad,today.getMinutes())
 
// end hiding contents -->
var months=new Array(13);
months[1]="janvier";
months[2]="février";
months[3]="mars";
months[4]="avril";
months[5]="mai";
months[6]="juin";
months[7]="juillet";
months[8]="août";
months[9]="septembre";
months[10]="octobre";
months[11]="novembre";
months[12]="décembre";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
document.write("<br>" + date + " ");
document.write(lmonth + " " + year + "");
// End -->
