var fDesc=new Array(); fDesc[0] = "MicroCalendar is a tiny calendar that sits in the Windows system tray, always just a click away. Find out what date the first tuesday of last month was, WITHOUT messing up your system's date, OR having to fire up a resource-intensive application like Microsoft Outlook. Also allows simple copy-to-clipboard functionality, and can display week numbers. This is a streamlined, super-clean, single-purpose application, without the clutter of unneeded features -- just what you're looking for! : )"; 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 = ''; } }