/* ©2004-2008 Samuel Dionne-Riel http://samuel.dionne-riel.com/ * Élaboré pour http://maboite.qc.ca */ var t = new Date(2024,05,10,12,06,53); function hgmtscroll() { hr=t.getHours();if (hr<10){hr="0"+hr;} mn=t.getMinutes();if (mn<10){mn="0"+mn;} sc=t.getSeconds();if (sc<10){sc="0"+sc;} af=hr+":"+mn+":"+sc; document.getElementById('hgmtscroll').innerHTML=af; t.setTime(t.getTime()+1000); setTimeout("hgmtscroll()",1000);}