<!--//afficher la date et l'heure système
var Mois  = new Array(12);
var Jours = new Array(7);
Mois[0]   = 'Janvier';
Mois[1]   = 'Février';
Mois[2]   = 'Mars';
Mois[3]   = 'Avril';
Mois[4]   = 'Mai';
Mois[5]   = 'Juin';
Mois[6]   = 'Juillet';
Mois[7]   = 'Aout';
Mois[8]   = 'Septembre';
Mois[9]   = 'Octobre';
Mois[10]  = 'Novembre';
Mois[11]  = 'Décembre';
Jours[0]  = 'Dimanche';
Jours[1]  = 'Lundi';
Jours[2]  = 'Mardi';
Jours[3]  = 'Mercredi';
Jours[4]  = 'Jeudi';
Jours[5]  = 'Vendredi';
Jours[6]  = 'Samedi';

function DateHeure(cible,Fonction) 	{
	this.Target   = cible;
	this.fonction = Fonction + '.Affiche()'; // Nom de l'objet JavaScript
	this.timeout  = null;
	this.Affiche  = Affichage;
	this.Stop     = StopAll;
	this.Affiche();	}

function Affichage() {
	var v_y2k;
	var out;
	var D  = new Date();
	var H  = D.getHours();
	var M  = D.getMinutes();
	var S  = D.getSeconds();
	var NJ = D.getDay();
	var Jo = D.getDate();
	var Mo = D.getMonth();
	var An = D.getYear();
		if (H <10) 	{out = '0' + H + ':';}
			else 	{out = H + ':';}
		if (M <10) 	{out = out + '0' + M + ':';}
			else 	{out = out + M + ':';}
		if (S <10) 	{out = out + '0' + S;}
			else 	{out = out + S;}
	out = Jours[NJ] + ' ' + Jo + ' ' + Mois[Mo] + ' ' + An + ' ' + out ;
  if (this.Target == "")	{window.status = out;}
  else	{this.Target.value = out;}
  this.timeout = window.setTimeout(this.fonction,1000);} 

function StopAll() 
	{
	clearTimeout(this.timeout);
	this.timeout = null;
	}
// -->

