var fDesc=new Array();
fDesc[1] = "in order to progress in the game. In this case, the scenarios will be represented by different rooms in the castle. You can see your current location at any time in the game map. There are some extra minigames included.";
fDesc[2] = "similarities are that you are in a maze, you have to collect every crystal to access to the next level, and that touching an enemy will make you lose a life. The differences are that you have not a magic pill that will allow you to eat your enemies in all levels.";
fDesc[3] = "of searching the hidden objects you will also learn some facts of the Buckingham Palace history, as when it was built, by whom and so on.";
fDesc[5] = "unleashing his evil on the world by overcoming the threat of his minions and rescuing the hearts of those who have failed the same quest previously, to win the game.";
fDesc[6] = "much gold as they can as well as kill the resident Mummy in order to win the game. The Golden Warriors 2.0 game is compatible with Windows Vista but will run equally well on earlier versions of Windows.";
fDesc[7] = "Sunday stroll with his lady friend Brea goes awry when a shadowy figure emerges from an open man hole and pulls Brea into the ground below.";
fDesc[8] = "repel an alien invasion. You have to guide it through a series of environments fighting all sorts of enemies. The game is a good arcade game, but it will appeal a special market of gamers.";
fDesc[9] = "you can. After eating each apple the worm grows a bit longer and therefore is more tricky to operate. Lead your worm from the easy beginners levels to the most challenging final level through many rooms, corridors and tunnels of the game world. Don't forget that collisions with walls, dangerous \"bombs\" scattered around may be fatal! Customize your worm! Options let you control the game speed and the worm's appearance. Select any of 14 game skins or design a new one. There are 10 basic game levels and 50 additional levels available for registered users. A small registration fee of just $10 will give you another 50 levels and that's a lot of fun!";
fDesc[10] = "the letter, his father tolds him to go into the vault of a bank and destroy a box with papers. Phillip instead of destroying the papers, follows a series of directions, which leads him to Greenland. And this is how the horror begins...";
fDesc[11] = "Matrix Screensaver will take you there in no time. Your screen will become the gate to numerous worlds of the matrix.";
fDesc[12] = "feel part of that strange and hard to understand world. You will be walking in that familiar long and white corridor, opening doors as you pass near them.";
fDesc[13] = "opportunity to explore the School of Witchcraft and Wizardry. You will be transported to a magical place where anything can happen. When you arrive to the Great Hall, where all the students get together when they are not studying, you will see a majestic fireplace.";
fDesc[14] = "coded world of the Matrix. Do you remember the thousands of lines of code that were supposed to be the details of our \"real\" life? Now you will be able to enter that world and, who knows? Maybe you will even be able to decode part of that gigantic code.";
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 = '...';
}
}