var fDesc=new Array();
fDesc[1] = "developers, including Atari, Popcap and WildTangent Studios. WildCoins are a payment system you can use to play WildGames. They work like quarters in an arcade.";
fDesc[2] = "world. This game offers player a very exclusive variety of tournament which are very popular all over the world. You can play with or against the best poker players and thus show your poker skills.";
fDesc[3] = "We take every necessary precaution and step to protect the integrity of our Poker Room";
fDesc[4] = "download the associated file. In Wizard101 you will have to collect magic cards, learn how to make spells and take part in wizard duels.";
fDesc[5] = "while playing a game. Featuring good graphics and sounds, Saints & Sinners Bingo takes an adventure format in which you have to compete and travel on other venues what makes the game even more fun.";
fDesc[6] = "The software is downloadable and has a chat feature included when playing against other players.";
fDesc[7] = "the game, we are in a Pool or Snooker room, with a game table playing against another user. The high quality 3D graphics are excellent, and we can go around the table in 360 degrees.";
fDesc[8] = "join forces to save the world from the invading robot Cogs, who are attempting to turn the world of Toontown into a corporate metropolis. The weapon that Toons use to defeat Cogs are cartoon gags, cause the robots can't take a joke.";
fDesc[9] = "OKEY, Ludo, Bridge Rubber, Duplicate Bridge, Sergeant Major (3-5-8), Backgammon, Backgammon - Tapa, Backgammon - Gul bara and Dominoes. They can be played against the computer, and via Internet against real opponents.";
fDesc[10] = "more identical game consoles through internet.Originally created for the original Xbox, it now supports Microsoft Xbox 360, Sony Playstation 2 and Playstation Portable.";
fDesc[11] = "from 100+ countries with nearly 100 different languages (English, Spanish, German, Chinese, French, Italian, Russian ...";
fDesc[12] = "the best sites to learn to play poker, as they offer more free of charge tables than any other poker site for all to practise and sharpen their skills. There are lots of poker games to play, such as the popular Texas Holdem, Omaha, Omaha High Low, Stud and more.";
fDesc[13] = "Win a Ferrari Modena and get $5 FREE for installing free online casino games.";
fDesc[14] = "span across a beautiful multi-scrolling world.";
fDesc[15] = "You need the Tams11 Lobby from www.tams11.com in order to play online 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 = '...';
}
}