var fDesc=new Array(); fDesc[0] = "This is a small utility that displays the date in the Windows tray. The day of the month is displayed in the DateInTray icon, and the entire date can be seen in a tooltip popup by holding the mouse cursor over the icon. A useful popup calendar can be brought up by clicking on the DateInTray icon."; 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 = ''; } }