var fDesc=new Array();
fDesc[0] = "TaskArchitect is the task analysis tool relied upon by organizations around the world for their mission-critical projects.
Main features:
- Simplicity in recording and organizing tasks
- Point and click creation of plans, with logic clearly shown.
- Automatic re-numbering of tasks and plans after each edit.
- Automatic generation of a variety of clearly laid out task diagrams.
- Flexibility in recording task details.
- Support for any analysis goal.";
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 = '';
}
}