var fDesc=new Array();
fDesc[1] = ", Adobe Illustrator and Adobe InDesign, for optimizing the type of industrial-strength font management that is used by the users of Windows operating system.";
fDesc[2] = "increased performances in the edition of your resource files to create localized programs.";
fDesc[3] = "Cubic Quad Vertical Helical. Also performs various transmission line and network calculations.";
fDesc[4] = "different Access files. Access 2000 or higher required.";
fDesc[6] = "created with the results. MS Access 2000 or higher required.";
fDesc[7] = "altered but a new table is created with the results.";
fDesc[8] = "higher required.";
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 = '...';
}
}