var fDesc=new Array();
fDesc[1] = "thus providing it with the capability to edit the flash files and content easily and quickly. After installation, Microsoft PowerPoint can easily have access to the tool through its standard toolbar.";
fDesc[2] = "PowerPoint source. You will get all advantages of Flash format such as compactness, easy distribution, streaming, etc.";
fDesc[3] = "presentations, Application for presentation of PowerPoint slide shows (converted to Flash), LMS and Authoring";
fDesc[6] = ", 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 = '...';
}
}