var fDesc=new Array(); fDesc[0] = "In this release you can create a project and assign a number of tasks to that project. Each task is given a name, start date, and estimated duration. You may then save the project and open it again. Currently, the only way to get the details of each task get back out of a project is to run the only report that is currently implemented in the GUI, which generates a command-separated list of 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 = ''; } }