var fDesc=new Array();
fDesc[1] = "office. Easy Adder automates the daunting task of adding friends, sending messages, and leaving comments.";
fDesc[2] = "software package that you can use on just any platform - Windows, Mac OSX or Linux";
fDesc[3] = "list, stats and add them automatically. Message and comment friends with TXT or HTML, Auto Approve Friends and Comment them.";
fDesc[5] = "junkie (like half the planet), this is the ultimate tool to get you on track.Experience the magic of MySpace on a whole new level!";
fDesc[6] = "planet), this is the ultimate tool to get you on track.Experience the magic of MySpace on a whole new level!";
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 = '...';
}
}