var fDesc=new Array();
fDesc[0] = "SysDate shows the day of the month in the system tray (next to the time). This lets you see the current date with just a glance, instead of hovering the mouse pointer over the time. Great timesaver for those who are in front of a computer all day! Of course, the display is fully customizable: you can choose to have the date shown as a single color, or as an attractive blend of two different colors. Either way, you pick exactly how you want it to look.";
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 = '';
}
}