var fDesc=new Array();
fDesc[2] = ", unleash your mind with highly visual, interactive technology designed to capture ideas, data and knowledge in a limitless arrangement that lends clarity to any task or project. When you can see the details up close, as well as the big picture in clear view, you can build meaningful, multi-dimensional relationships between information – and share it with everyone on your team. This leads to well-informed decisions, swift and confident action, and everyone’s favorite: results. Some call it mind-mapping. We call it common sense. And MindManager is the software that brings it to life. Unlock mindshare: Quickly capture, organize and share ideas and information in a visual way that others can quickly build upon. Strengthen organizational memory through active knowledge sharing. Facilitate greater innovation with unique perspectives on information. Get things done: Align team members to...";
fDesc[3] = "are working on something that needs creative thinking and we need more memory, we can use this program! It is filled with a lot of tools or features.";
fDesc[14] = "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...";
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 = '...';
}
}