var fDesc=new Array();
fDesc[1] = "advantages of the new enhanced user interface. In addition, virtually anyone, anywhere can intervene in the review process with Autodesk Design Review, the free integrated solution available to consult, write and revise designs electronically.";
fDesc[2] = "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[3] = "drawings such as flowcharts, network diagrams, presentations, building plans, fashion designs, workflows, program structures, UML, web design, electrical engineering, database diagrams, and more.";
fDesc[4] = "careening through the streets of major cities is a bit more of thrill. Midtown Madness lets you chart your own path as you race your friends through the streets of San Francisco.";
fDesc[5] = "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[6] = "represents the complete structure of a project or plan by forming a chart that shows how they will be implemented. By using WBS Chart the projects can easy be understood by the individuals as it presents everything in a very simplified manner.";
fDesc[7] = "end-of-day (EOD) data for the most famous world markets. It is ideal for new users with short training time. It is simple and powerful, and absolutely free.";
fDesc[8] = "Easy-to-use and versatile Gantt chart designer software. Simple copy and paste into Office documents.";
fDesc[9] = "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[10] = "Parashara system. It also includes elements of the Systems Approach (SA) to Indian Astrology by Professor V.K. Choudhry of New Delhi. To build an horoscope, you´ll need to fill the Chart Data, pressing over the File and then the New option.";
fDesc[11] = "You will be able to download it and see the complete source code for every chart type in this demo when you purchase the JFreeChart Developer Guide.";
fDesc[12] = "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[13] = "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[14] = "capability to keep its user updated with any significant events happening at a stock exchange. The Visual Chart application also serves as a wonderful and effective tool for compilation and interpretation of market data and handling the information effectively.";
fDesc[15] = "draw flow charts in a quick and effective way. The program is able to create customized flow charts as it contains all the symbols which are required in the drawing process.";
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 = '...';
}
}