var fDesc=new Array();
fDesc[1] = "with computer bots or live opponents by the Internet or LAN.";
fDesc[2] = "pile. Receive different achievements while you raise your score, and gain new decks after winning at special bonus stages. All you will need to play this game is your mouse.";
fDesc[3] = "challenged by the wit and skill of Spite, the computer opponent. Similar to SkipBo. Also playable with an Internet/LAN connection";
fDesc[5] = "community foundation piles. Needs the Tams11 Lobby http://www.tams11.com in order to play against others.";
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 = '...';
}
}