/* auteur: WebExpert, Gyger Vincent, Padou Web */
/* Date de création: 13.02.02 */

function jsfHeureStatus()
{
LHeure = new Date()
Heure = LHeure.getHours();
Minute = LHeure.getMinutes();
Seconde = LHeure.getSeconds();
if (Minute<10){M = "0";
M +=Minute;
Minute=M}
if (Seconde<10){S = "0";
S +=Seconde;
Seconde=S}
timestring =Heure;
timestring +=":";
timestring+=Minute;
timestring +=":";
timestring +=Seconde;
window.status = timestring;
timerID=setTimeout("jsfHeureStatus()",1000);
}


