function months()

  {

  this[0]="janvier";

  this[1]="février";

  this[2]="mars";

  this[3]="avril";

  this[4]="mai";

  this[5]="juin";

  this[6]="juillet";

  this[7]="août";

  this[8]="septembre";

  this[9]="octobre";

  this[10]="novembre";

  this[11]="décembre";

  }



//Fonction tableau compatible JavaScript 1.0

function days()

  {

  this[0]="Dimanche";

  this[1]="Lundi";

  this[2]="Mardi";

  this[3]="Mercredi";

  this[4]="Jeudi";

  this[5]="Vendredi";

  this[6]="Samedi";

  }



var mois=new months();

var jour=new days();

var time=new Date();



var fr_jour_s=jour[time.getDay()];  //Jour de la semaine

var jour_m=time.getDate();  //Jour du mois

var fr_mois=mois[time.getMonth()]; //le mois

var annee=time.getYear();// annee de forme XXXX



// modif gestion du bug an 2000.

// document.write (navigator.appVersion.substring(0,1));





if (eval(navigator.appVersion.substring(0,1))>3)

  {

  annee=time.getFullYear();

  };
