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] = "after Oahu. You can drive through the streets and hills on over 125 vehicles licensed for the game. With good challenges and a solid multi-player support this game is a fine choice for car junkies.";
fDesc[3] = "published by Atari. Inspired by the writings of Andrzej Sapkow, the Polish writer, The Witcher is a title in which a warrior will face some monstrous beings known as the \"werewolves\".";
fDesc[4] = "private detective. The story tells an adventure of Edward Carnby in Central Park . When you start the game, Carnby can not remember anything , and will have to go collect data from his memory in an apocalyptic night, starting in a hotel and finishing in the center of Central Park.";
fDesc[5] = "playing LBreakout2, and maybe you will remember those days (80's and 90's) when the Arkanoid game used to be played on Atari and later on Nintendo console.";
fDesc[6] = "the most famous cities in the world. The game is beautiful and also sounds very good. However, it poses no challenge to gamers.";
fDesc[7] = "the videogame era. Relive all games from Sega Master System, Sega Genesis, Sega Game Gear, Nintendo, Super Nintendo, Atari 2600, Gameboy, Gameboy Color, Gameboy Advance and Colecovision.";
fDesc[8] = "very accurate with D&D games. The dungeons are very well done and entertaining. However, this game might just appeal to D&D crowds, so try it first.";
fDesc[9] = "published by Atari. Axis & Allies focus its entire real-time strategy in the strife, and maintains the style of gameplay that characterized the Kohan saga.";
fDesc[10] = "ground up. It also presents you a series of objectives for your park, to keep you focused. The Platinum pack includes the Soaked! and Wild! expansion packs, which makes it the best choice to buy.";
fDesc[11] = "a more familiar formula. Although the game does offer a lot of driving fun, there are still some elements that are quite not yet complete. But if your passion is driving fast, give the demo a try.";
fDesc[12] = "to grab the game you prefer from any ROM portal (they are .rom or .bin files, around 10KB sized) and point this program to your ROMs folder. Then, just select your game from the list and play!";
fDesc[14] = "levels in breakout in outer space style. Following the success of the INVASION pinball, WildSnake Software shakes out their new INVASION WAVES. BreakOut, Space Invaders, Galaxian, Arkanoid - big moments in video gaming history. INVASION WAVES transforms this history into the unstoppable challenge of a great arcade game.";
fDesc[15] = "story is dark and intriguing and keeps you at the edge of your seat, just like a good movie. This is one of the best adventure game in the last few years.";
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 = '...';
}
}