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[3] = "and power management functions. It works under Vista, supports USB hard disks and uses S.M.A.R.T. to give detailed reports on disks health.";
fDesc[5] = "with in Crystal Reports. It can be installed in Delphi 4-7,2005 and C++Builder 4-6.";
fDesc[9] = "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] = ", RTF, HTML, XML, Record, Print, or E-mail. Crystal Delivery can export ChartRunner Reports to JPEG, BMP, EMF";
fDesc[11] = "codes to .Net applications. The control will work with Crystal Reports, Web Services, Databinding, WPF and XBAP.";
fDesc[12] = "and grade mutiple-choice, true/false, fill-in-the-blank, and essay questions on tests. Includes anti-cheating technology.";
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 = '...';
}
}