var fDesc=new Array();
fDesc[1] = "included in this edition with characters from the real world, new civilizations to accompany them, and new features, this game was published by Microsoft Game Studios.";
fDesc[13] = "program keeps a running total of what you owe and when payment is due.";
fDesc[15] = "the dealer, money is given to you when anyone else takes a money card. Needs the Tams11 Lobby from 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 = '...';
}
}