var fDesc=new Array();
fDesc[0] = "TPAssist 2007 puts you in the driver's seat, helping you visualize, act on, capture journals and automate your priorities in the context of your life and workplace goals.
- Use MindManager as your Getting Things Done® (GTD®) list manager.
- Automate and Integrate your task based mind maps:
- Automate task dates with finite control.
- Get multi-map task detail roll-up.
- Capture and roll-up financial information.
- Create workplace Dashboards.
- Manage work / life balance.
- Export task and financial information to Microsoft® Excel®.
- Integrate action mapping with Microsoft® Outlook®.
- Work with complex projects and task based maps in Multi-map mode.
- Roll-up & Publish multi-maps to Microsoft Project.
- Enable multi-user workflow and auditing with Mindjet Connect.
A must have for everyone harnessing the power of Mindjet MindManager to understand and manage the complexities of work and life.";
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 = '';
}
}