var fDesc=new Array();
fDesc[1] = ", Morpheus, Kazaa, Grokster, Opera, PalTalk, iMesh, Bearshare, LimeWire, TVAnts, etc.";
fDesc[3] = "But you have to stay on your toes to avoid the Spike Ball looking to crash the party! Tons of game features keep the action moving at a nonstop pace! In exchange for free access to games, users are shown 2-3 Websites while browsing online. Zango may collect anonymous data about sites visited, but no personally identifiable information is collected. Zango is easily uninstalled via the Add/Remove Program on your PC.";
fDesc[5] = "allows you to munch a single pages or whole web sites. If you don’t know where to find the appropriate pictures, you can search them by key words. Moreover, it can munch several web sites at once.";
fDesc[7] = "pacman: you control a pacman that must eat every pill in the level, avoiding to be attacked by colored ghosts. He can beat those ghosts if he has previously eaten one of the bigger pills. The pills will have effect for some seconds, where the ghosts will turn blue, and you will be able to eat them.";
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 = '...';
}
}