var fDesc=new Array(); fDesc[0] = "Planner is a software product that attempts to bridge the gap between planning with simple spreadsheets (no help whatsoever) and complex products such as Microsoft(r) Project. It does so by providing a simple interface to do your planning work.
Features:
-Easy and quick todo-list.
-Tasklists for both planned & (yet) unplanned tasks, as well as agreements made with 3rd parties.
-Multi-client, multi-project planning.
-Multiple human resources (employees and/or external persons).
-Simple Gantt chart displaying which tasks are currently relevant.
-Quick filtering on resource (view and print tasks for a single person).
-User-friendly interface; implicit creation of clients and projects.
-Task start- and enddates to get an overview of what tasks are relevant today and in the future."; 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 = ''; } }