var fDesc=new Array(); fDesc[0] = "This is a free utility that helps keep track of time spent on documents for various tasks/projects while working on the computer. It works on a very simple principle: You create a timer and provide it with a keyword to sniff/detect. As such, each time you work on a document whose titlebar contains that keyword the corresponding timer will start counting. For example you can create a timer and have it sniff the keyword "Firefox" and this will keep track of time you spend using Mozilla Firefox. If your work is organized so that each project you work on has a docket number (or a database serial) appearing in the filename of each related document, then if you create a timer to sniff that serial you essentially keep track of time spent on that project."; 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 = ''; } }