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[2] = "xhtml or Javascript. The program's interface is pretty nice and easy to use, and the most important thing, it generates strict xhtml compliant code.";
fDesc[3] = "Bible study verses etc., with those books in user’s own library to compare them to references across the Internet enabling easier Bible study research assistance.";
fDesc[4] = "with in Crystal Reports. It can be installed in Delphi 4-7,2005 and C++Builder 4-6.";
fDesc[5] = "Easy-to-setup, search engine friendly, cross-frame, cool styles, supports css, floating, drag-n-drop, separators and more...";
fDesc[6] = "for DITA, DocBook 4 and 5, TEI P4 and P5, XHTML.";
fDesc[7] = "presentations, Application for presentation of PowerPoint slide shows (converted to Flash), LMS and Authoring";
fDesc[9] = ", frames, reports with using of property editors, component editors, custom modules and other design time objects like";
fDesc[10] = ", unusual fluctuations";
fDesc[11] = ", Online sharing of PowerPoint presentations, Application for presentation of PowerPoint slide shows (converted to Flash), LMS and Authoring";
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 = '...';
}
}