/* AUTEUR: DIGGI - Tous droits réservés*/
/* DATE DE LA DERNIERE MODIFICATION: 28/01/01 */
<!--
/*************************************************************************
* APPLICATION : Afficher la date de modification du document en francais *
**************************************************************************/
  function MakeArray(n) {this.length = n; return this;}
  var Days = new MakeArray(7);
  var Months = new MakeArray(12);
  var name = navigator.appName;
  Days[0]="dimanche";
  Days[1]="lundi";
  Days[2]="mardi";
  Days[3]="mercredi";
  Days[4]="jeudi";
  Days[5]="vendredi";
  Days[6]="samedi";
  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";
function getNiceDate(theDate) {
	if (name == "Microsoft Internet Explorer") return Days[theDate.getDay()] + " " + theDate.getDate() + " " + Months[theDate.getMonth()+1] + " " + [theDate.getYear()];
	else return Days[theDate.getDay()] + " " + theDate.getDate() + " " + Months[theDate.getMonth()+1] + " 20" + [theDate.getYear()-100];
}
// -->

