var fDesc=new Array();
fDesc[1] = "browse through all the game available and download demos, trailers, or the complete game. Once a game is downloaded through Valve's Steam, users can use Steam's multi-player service.";
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] = "Yahoo!, this application is targeted at gamers. It is a simple application that does without all the unnecessary features of those messengers. The main window has information that resembles the friends tab of Xbox Live!";
fDesc[4] = "advantage of full health, ammunition and time and can also see through walls and hidden spots. User can also hack into the computer of the different gamers.";
fDesc[5] = "in the world of lineage. It is a classic MMORPG with a lot of elements very straight forward. Although it may be hard for casual gamers, committed gamers will enjoy this good time.";
fDesc[6] = "quick and straight access to the new Crunchgames center of Oberon Media. It includes all games organized into categories, with quick links to the most popular ones.";
fDesc[7] = "creatures and spun a web over their kingdom. You must solve 60 puzzles to break the spell and return the land to sunshine.";
fDesc[8] = "single player adventures, or in large head-to-head guild battles. Guild Wars is a mission-based game set in a stunning 3D fantasy world that offers excellent support for guilds.";
fDesc[9] = "released from Ubisoft (the game's publisher). It enhaces the texture quality, lightning and fog, in sum the overall graphic detail level is much better.";
fDesc[10] = "era for gaming. This game first saw the light when it came out for the XBOX 360's opening. Gamers all over the world were thrilled by all you could do.";
fDesc[11] = "The game features a charming turtle in its mission to save the bay where it used to live, from the invaders' attack. The story behind this game is really thrilling.";
fDesc[12] = "an incredible game, you fall in love with GameSpy Comrade, a revolutionary desktop software designed to make it easier and faster to play games online with your friends.";
fDesc[13] = "kinds of video games, from classic arcade games to the newest PC hits. It is the perfect software for all gamers, since you can play the games in its original format, right in the Game Tap window.";
fDesc[14] = "(a modification of the Quake 2 GPL engine), and aimed on the competitive scene, or the e-sports community. The base gameplay is focussed around the art of movement, meaning moving, speed and tricks play a big part in the gameplay.";
fDesc[15] = "of Feed the Snake is that the program will be attractive for experienced gamers as well as for beginners. The computer graphics and the design of the game are done very well.";
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 = '...';
}
}