var fDesc=new Array(); fDesc[0] = "TempusFugit is a small program displaying time in Roman numerals and date in Latin in the Windows systray (near clock).

Display hours, minutes, seconds (or only hours and minutes) in Roman numerals
Set Roman script mode (4=IIII, 9=VIIII, etc.) or medieval script mode (4=IV, 9=IX, etc.)
Display Latin date in Tooltip.
Can choose Roman year (from the foundation of Roma: 753 BC) or Christian year.
Set font name, font colour, font size, background colour using a contextual menu (rigth click on the display zone)
Warning: the Taskbar must be horizontal (up or down)"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }