var fDesc=new Array(); fDesc[0] = "ProductivityMeter is a program that tracks how you spend time on your pc.
With this information in hand you can find out when you're most productive or not, and take action to improve your productivity. For instance, accept meeting requests only at certain times, or decide to do certain work during your most productive time."; 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 = ''; } }