var fDesc=new Array();
fDesc[1] = "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[6] = "an email. Output to a folder, ftp, fax or a printer. Choose from Word, Excel, HTML, Acrobat (PDF), RTF and more. Easy to use.";
fDesc[10] = "and a free execution engine by a command line; it looks like Office 2007, authorising every user to run his own extra";
fDesc[13] = "Modify, Migrate and Convert + more :: one or many Crystal Reports at the same time! For Crystal Reports XI";
fDesc[14] = ", Modify, Migrate and Convert + more :: one or many Crystal Reports at the same time! For Crystal Reports 8.5";
fDesc[15] = ", Analyze, Document, Modify, Migrate and Convert + more :: one or many Crystal Reports at the same time! For Crystal Reports 10";
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 = '...';
}
}