var fDesc=new Array(); fDesc[0] = "Task Tiger is a task management software for getting things done (GTD). On startup tasktiger sits quitely in the taskbar notification area. It also displays a small green folder icon which is described at the end of this article.

Double clicking the icon in taskbar notification area will launch the review window as below. This window can be used to review the current status of the tasks as well as to add new tasks."; 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 = ''; } }