var fDesc=new Array();
fDesc[1] = "StartUp Tuner 2 will detect even those that do not want to be found and will give you the chance to deactivate their auto-start entry, or uninstall the whole program if you wish.";
fDesc[2] = "without previously converting them into WAV. The conversion process is done on the fly, taking up very little system resources and no temporary disc space whatsoever. Besides, this neat piece of software can also erase your CD-RW discs.";
fDesc[3] = "Toolbars, Buttons and Plugins. Delete Files that are currently in use.";
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 = '...';
}
}