var fDesc=new Array();
fDesc[1] = "of projects in your organization. Generate various reports to share information about the current state of your project.";
fDesc[2] = "creating, editing and deleting tasks. Its GUI is easy and friendly to use. Its installation is easy to perform and some components must be selected during the process. GanttProject is an open source program that runs in any platform (Windows, Linux, Mac OSX, etc).";
fDesc[3] = "requiring Microsoft Project. Steelray is the world's first project navigator and first project search engine.";
fDesc[4] = "Easy-to-use and versatile Gantt chart designer software. Simple copy and paste into Office documents.";
fDesc[5] = "work, then view gorgeous Gantt charts and customizable project cost reports. Syncs direct with MindManager X5 Pro too";
fDesc[6] = "Teaching-you Project Management Skills is the perfect aid to ensure you complete your projects on time within the budget and that its performance can be monitored and reviewed over time.";
fDesc[7] = "teams should view and share the information from the project management";
fDesc[8] = "views ( Gantt, Network, Resource, Estimation, Risk, Plan..) to get the broad understanding of where your project is heading.";
fDesc[9] = ", events, TODO's, Diary, etc. RSS Feeds. Gantt Diagram. Synchronize with other computers. Run from a flash drive.";
fDesc[10] = "never miss any of them. To create an event you double click on the day you want or go to the event tab, and complete the different fields that include subject, location, label, start and end time, task status, etc.";
fDesc[11] = "with rich project filters; track Critical Path of subproject and milestone by using unlimited project baselines";
fDesc[12] = "over the network. This system allows you to specify complex tasks sequences - a task or multiple tasks can be required to be completed before other tasks can be started. This modern and extremely handy program makes project management a real pleasure. It allows any specialist to create a profile to run a personal schedule. The program enables users to switch between profiles to view the schedule of any staff member, it is also possible to view multiple profiles simultaneously or open the schedules of several specialists at the same time. Once you've specified a required sequence, it is automatically visualized across a horizontal timeline. Task dependency is shown via connector lines. This software tool can display completion percentage for each individual task. An overall progress indication option is also available. You can edit task dependencies, create new task connectors and of...";
fDesc[13] = "from Mindjet® MindManager to Microsoft ®Excel while maintaining it's hierarchical structure and visualizing your project in the form of a Gantt chart. Using a two-way link between Microsoft® Excel and Mindjet® MindManager Pro a user can fine-tune the planning in one session in Microsoft® Excel and synchronize the changes with Mindjet® Mindmanager. There is no need for any additional software if the user has a Microsoft® Excel and Mindjet® MindManager Pro license. The aHa!2WayXLS add-in for project planning: * Automatically generates a list in a project overview in Microsoft® Excel of all the milestones and tasks including start dates, end dates, duration, progress, priorities and resources * Generates a Gantt chart which visualizes the tasks in a timeline * Generates an interactive timesheets for each resource, with a unique color identifier for each resource throughout the...";
fDesc[14] = "chart, planning for project management.";
fDesc[15] = "and scheduling to critical path management, overallocated resources detection, progress tracking etc.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}