var fDesc=new Array();
fDesc[1] = "that is set in a teamplay, you can choose to be a terrorist or a counter-terrorist. Warning: this great game is very addictive! You’ll download it in a few minutes and you’ll be playing it in less!";
fDesc[2] = "seventh delivery of the Grand Theft Auto saga. The game contains new and numerous improvements over previous releases, but with the same spirit that characterizes this saga of controversial video games.";
fDesc[3] = "her business running. Your task is to make sure she does all her work and provides the farm with money. You will have a place at the market where you can put all your food for sale.";
fDesc[4] = "period. The game starts with a team of US scientists who are sent to an island in the south of China to investigate a weird phenomenon but face a blockade by the North Korean government. Needless to say, that is one critical situation.";
fDesc[5] = "Ubisoft. It has a multiplayer online adventure and a single player mode. Storyline: You play the role of Jack Carver, you are on your boat in a beautiful day in the company of Valerie, a journalist. Suddenly your boat takes fire and you find yourself swimming in the ocean.";
fDesc[6] = "fourth of a series of action games on which an anime saga is also based. The story focuses on the characters of Dante and Trish and their quest to confront the demon called Mundus.";
fDesc[7] = "Resident Evil is a very successful saga of video games (and movies too). I played Resident Evil 1, 2 and 3 and I really like them. The game was evolving with every release, improving graphics, sound and gameplay.";
fDesc[8] = "pursue employment in five new careers that include dance, entertainment, intelligence, oceanography and architecture. There are ten hobbies included in the expansion pack and several new elements.";
fDesc[9] = "improvement of the game predecessor Star Wars: Battlefront. This game adds all the new elements of the last film of the saga, Episode III";
fDesc[10] = "which the player builds an empire in the Medieval era. Stronghold 2 offers more content than its predecessors Stronghold and Stronghold Crusader";
fDesc[11] = "Traveller's Tales and Amaze Entertainment and published by Lucas Arts and TT Games. It is based on Episode IV, V and VI of the Star Wars film saga";
fDesc[12] = "better way. The basic rules are the same as in the original game, but it includes great new features that make this game absolutely enjoyable and addictive";
fDesc[13] = ", there is a lot more than LEGO-created characters and environments to it. This game divides the three Indiana Jones movies into 6 chapters each, so it is like playing through the movies all over again.";
fDesc[14] = "of the action film Hard Boiled. The main character of the game is modeled on the Chinese actor Chow Yun-Fat.";
fDesc[15] = "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.";
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 = '...';
}
}