var fDesc=new Array(); fDesc[1] = "challenged by the wit and skill of Spite, the computer opponent. Similar to SkipBo. Also playable with an Internet/LAN connection"; fDesc[2] = ", German Whist, Knaves, Oh Hell, Skat, Spades, Tablanette, and War."; fDesc[3] = "with computer bots or live opponents by the Internet or LAN."; fDesc[4] = "community foundation piles. Needs the Tams11 Lobby http://www.tams11.com in order to play against others."; fDesc[10] = "easily changed. Any game can be replayed from either side. Also can be played across a network."; 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 = '...'; } }