var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "mode, i.e the same history and strategy in real time. The big difference that shows the wisdom of the people of Microsoft and Ensemble study is that it adds 5 new civilizations and substantially improves the artificial intelligence.";
fDesc[4] = "storyline, which makes it really attractive. It is a strategy game which storyline develops in real-time mode. Players have to choose among twelve different civilizations from the Middle Ages , to make them rise and advance towards the conquest of the whole world.";
fDesc[5] = "will have to order figures so that you can score points and pass the levels. As you keep on passing levels you will be able to use magic to get better and it will be easier for you.";
fDesc[6] = "and Magic V. This pack presents several enhancements over the original game. The storyline begins from some time after the story in Heroes of Might and Magic V. Multiplayer mode allows all players on a map to move their units without waiting for the other players during a turn.";
fDesc[7] = "shooting at them figures of the same color. If they reach your garden you will automatically lose and will have to start all over again.";
fDesc[8] = "three figures of the same color and click on them to eliminate them and get points. The screen will show you a lot of different balls, each one with a color.";
fDesc[9] = "storyline and superb graphics. Ancient Secrets is the type of game that can be played endlessly by children and adults, as it is entertaining and good to enhance memory skills.";
fDesc[10] = "factory. As all the candies are messed up, you will have to gather them before they destroy everything. You will have to shoot candy from your shooting machine directly to the candy of the same color so that they disappear and they don't destroy everything.";
fDesc[11] = "stealth games and role playing games. The storyline is really well done, and the decisions you make throughout the game change the storyline itself. It is still a great game and a great story, if you like this sort of ambiguity this is a great game to have.";
fDesc[12] = "that will help you learn and create magic spells. In each level, your magic professor will tell you what to find and you will have to get it all and join it so that you can learn, pass levels and earn points.";
fDesc[13] = "find amusing stories. You will play the character of a photographer that is working in a paparazzi magazine. You will have to think fast and take a deep watch at the screen to capture photos of celebrities or weird people and sell them to the magazine's owner for some cash.";
fDesc[14] = "China, where you are given a daring mission to accomplish. The pass of time has weakened some sections of the Great Wall, and it is your task to repair them.";
fDesc[15] = "The game features first-person puzzle exploration game of exceptional depth and quality. It has an original fantasy-based mass-appeal unique storyline.";
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 = '...';
}
}