var fDesc=new Array(); fDesc[0] = "Program for accounting projects, tasks, cliens and actions of doers.
There is three basic lists in program: project list, client list and list of doers.

There is possibility adding subgoals for tasks (1.1, 1.2, 1.2.1, 1.2.1.6 etc. up to 10 level)
Additional lists: Actions, Additional terms (links to other tasks). There is possibility to form project groups.
Fox6 libraries needed - www.araxgroup.com"; 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 = ''; } }