var fDesc=new Array();
fDesc[1] = "new, intuitive interface aimed to streamline your work flow. Also, many of the features that were dispersed in several menus, now are under the Office button.";
fDesc[2] = "utilities as Word 2007, Access 2007, PowerPoint 2007 and others. It allows users to input data into cells included in a grid made of rows and columns.";
fDesc[3] = "create professional-looking reports by adding dynamic graphics and animated charts. Besides, you can choose different formats for your report such as a bar chart, pie chart or cross-tab summary tables.";
fDesc[4] = "such as clear org charts, complete maps, spectacular flowcharts, time lines and much more in just minutes in a very easy way. No experience is needed.";
fDesc[5] = "drawings such as flowcharts, network diagrams, presentations, building plans, fashion designs, workflows, program structures, UML, web design, electrical engineering, database diagrams, and more.";
fDesc[6] = "your hard disk including important information as size, location and number of files for each existing folder and its subfolders, allocated and wasted space, last access date, file owner and permissions and other details.";
fDesc[7] = "Navigator only. The program is provided with scan function to search maps on the computer and DVD. Nokia Map Manager is an additional application and is used together with Nokia PC Suite 6.86 and later versions.";
fDesc[8] = "charts. With the help of this software the user can easily modify the looks of the charts as per requirement, by selecting any desired color theme, content, pictures, box borders, number of generations and lots more.";
fDesc[9] = "Brother's Keeper you can view and print a wide variety of reports and charts including ancestor charts, descendant box charts and tree charts. Brother's Keeper is a great program which supports multiple languages like English, Norwegian, French, German and many more.";
fDesc[10] = "in the big stock markets of the world whether he is a small investor or a big player of this game. By using this incredible software you can view the last 11 years history of different stock markets in the form of analysis reports and charts.";
fDesc[11] = "to do specific tasks like, for instance, create organizational charts. So then is when it's better to use a more specialized application. HumanConcepts OrgPlus that will help you to create professional organizational charts in an easy and dynamic way.";
fDesc[12] = "charts. It is specifically designed to support the rapid creation of staff organization diagrams, management structures or any hierarchical structure charts. Support is also given to include photographic images within each node of the chart.";
fDesc[13] = "and a standard edition. With this program you can import the data you need to create your chart by copying the information from your spreadsheet and then pasting it in Swiff Chart. You can also import from a simple text file.";
fDesc[14] = "a project management software works on window platform and it can be used to create PERT charts. PERT Charts are also known by some other names like Network charts, Precedence Diagrams, Logic Diagrams etc.";
fDesc[15] = "the presentation of graphics, charts, tables and other reporting and enables users to build visually clearer reports and dashboards.";
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 = '...';
}
}