var fDesc=new Array(); fDesc[0] = "Task Counter allows you to see much time you spend on a specific task.
Task Counter is a small applet, that counts time while working on a specific task. Built-in statistics allow you to assess such effectiveness with which you worked in a given day, how long you have been working this day, how many times you have been starting the work on a specific task, etc. It is a very useful tool for freelancers, who often measure their projects based on time spent on the engagement."; 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 = ''; } }