var fDesc=new Array();
fDesc[1] = "screensaver, it includes a very easy to use wallpaper changer. Obviously, it allows you to use any of the pictures as wallpaper and change it whenever you want.";
fDesc[2] = "Your download manager will no longer have problems saving such problematic images that are usually found on forums or blogs. GPL works with Internet Explorer (including its shells: Maxthon, Avant, etc), ,Opera and FireFox installing GPL's extension.";
fDesc[3] = "It gets you the latest in the entertainment world from popeater.com in the form of hot photos and latest news. The latest news also appear in the news ticker on the toolbar. The search box in the toolbar lets you find exactly what you are looking for using AOL search.";
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 = '...';
}
}