var fDesc=new Array();
fDesc[1] = "III and its expansion pack, and it tells the player that the conflict between the factions is ideological, and not a merely good-versus-evil thing. Depending on your starting point, players will have to undertake different quests, face different monsters, and so on.";
fDesc[2] = "first.";
fDesc[3] = "1000s of artists. You will also be able to listen to music on your PC, mobile player or as ring tones on your mobile phone. With Radiotracker, you will have in your hands the gift of unlimited music all day, free and legal.";
fDesc[4] = "beginning, but as you keep on advancing you will notice that the difficulty will increase. The game has great graphics, nice music and sound effects and is very funny and entertaining.";
fDesc[5] = "3.0. Since its beginning has always been the rivalry browsers until became the favorite of the users. Netscape always taking a step forward innovating and upgrading, it couldn’t be considered the ancestor of multiple browsers as Firefox, Opera, etc..";
fDesc[6] = ", your adventure will begin after knowing that your grandfather left you a strange and old coffer. At the beginning of the game, you will see an explanation about an ancient pirate treasure, which had an unique artefact,";
fDesc[7] = "In this game you will be a pilot and you will have to perform various missions in hostile skies.At the beginning of the game you will be able to choose your chopper, among different models.";
fDesc[8] = "hidden object game does not mean that you have played them all, however, this is one of those cases where from the very beginning you can realize that not all the necessary attention has been paid through the development process in order to achieve a truly original and unseen product.";
fDesc[9] = "get to bet how well you can do at the beginning of each round. A window appears asking you to choose one of the three options The thing is that if you miss your bet the game is over, so try no to shoot too high.";
fDesc[10] = "items and some hints in case you get stuck. What makes this game different from others of the kind, is that in this one you are not only supposed to be finding items and picking them up from a scene, but you also have to put them in their correct spots in other scenes.";
fDesc[11] = "solitaire games. All thirty solitaire games offer a thorough explanation of how to play in the beginning Some of the solitaire are foundation building type and other discard type.";
fDesc[12] = "forces and recover the realm. You will be fighting against evil spiders, cyclops, orcs, and wizards among other creatures. Be sure to catch all the spells and bonuses after destroying your enemies, this way it will be much easier to kill the monsters at the end of each level.";
fDesc[13] = "This game and adventure brings you different games, each time you finish a location the game will challenge you with a swapping puzzle. Challenge your speed and ability with a timed mode and try to finish your task before the time ends.";
fDesc[14] = "XP and Vista. When using SynthEdit software you can use it to design your own Synth from beginning to end. It will allow you to create a raw product and make it into the sound that you want.";
fDesc[15] = "adventure, as the game strongly depends on the way we develop our character. After some minutes playing we will be inmersed in the story of the game.";
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 = '...';
}
}