var fDesc=new Array(); fDesc[0] = "Task Tracker is the simplest way to keep track of all your tasks and projects. Whether you need a tool to quickly track your to-do list, or you need to schedule a large project, Task Tracker can help. By organising tasks into logical groups and keeping track of estimates, it is easy to see at a glance which projects need your attention and where you are on your schedule."; 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 = ''; } }