var fDesc=new Array(); fDesc[0] = "TClockEx enhances the standard Windows taskbar clock, adding the ability to display the date, time and lots of other information in any format you like. TClockEx is highly customizable, from the format to the font and colour, and even the tooltip information. Many people have wondered why this wasn't built into the standard clock to begin with.

I originally wrote TClockEx out of frustration with not being able to see the date easily. Since the first release I have added new features after encouragement and requests from people with similar feelings. I've seen other programs try to address the date issue by putting little windows in the corners of the screen, by changing the title bar of the active window, and so on. Those ideas didn't really appeal to me because they became intrusive and took up valuable screen space, or just got in the way. Some programs even try to use a series of icons in the tray to display the date graphically."; 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 = ''; } }