var fDesc=new Array();
fDesc[1] = "automatic sequencing of commands.";
fDesc[3] = "properties of structural steel shapes. With the 2D3DSteel add-on you can draw with steel in AutoCAD R14 or 2000. US and Metric units.";
fDesc[4] = "(by a separating character such as a space, comma or other character) and placed into the correct number of new fields. Access 2000 or higher.";
fDesc[5] = "documents served by Macvolumes. Application or service for mass translation of forbidden names to valid Win conventions.";
fDesc[6] = "normalized filenames to a target folder and restoring Macintosh structures, filenames and NTFS Win 2K files properties after reception";
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 = '...';
}
}