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] = "matchmaking and text and voice chats. Features game news and downloadable demos. When you install GameSpy Arcade 2.05, the program seeks for supported installed games in your computer, in order to allow you to play them online. If it finds nothing, it will later help you to find some.";
fDesc[3] = ", therefore Infinity Ward released patch 1.6. The patch includes 4 new and excellent multi-player maps, along with new features for filtering and several bug fixes.";
fDesc[4] = "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[5] = ", Casino, Arcade, etc. All you have to do is choose your game, download it and start playing! Besides, RealArcade helps you to easily access games installed in your PC. Download RealArcade and enjoy playing for hours.";
fDesc[6] = "player is directly connected to its online database of streamed radio stations and TV channels. Presently web media player’s database has more then 170 online TV channels and more then 800 online radio stations.";
fDesc[7] = "We take every necessary precaution and step to protect the integrity of our Poker Room";
fDesc[8] = "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[9] = "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[10] = "The software is downloadable and has a chat feature included when playing against other players.";
fDesc[11] = "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[12] = "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[13] = "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[14] = "players on a single PC and up to eight characters on screen in online mode. This new version has four Battle modes, a survival Stage, a game recording feature and background music.";
fDesc[15] = "table and card games like Baccarat, Blackjack, Casino War, as well as three types of roulettes and more than 30 slots machines, including the classic reel slots, multi line slots and original multi spin slots.";
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 = '...';
}
}