var fDesc=new Array();
fDesc[1] = "compressed file and much more! Messenger Backup also include a Scheduled Backup and Chat Logger features!";
fDesc[12] = "databases to always have the most recent message history regardless of how many computers ICQ is installed on.";
fDesc[13] = "1,000 different ICQ windows, and AOL Instant Messenger windows. This will allow you to have one UIN for friends, one for family, one for busi...";
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 = '...';
}
}