var fDesc=new Array();
fDesc[1] = "background of the game is such that, you are the head of an international team of skilled explorers who are on a classified mission. In this mission you are provided with 76 challenging levels where you have to unfold the secrets of the long lost fabled continent.";
fDesc[2] = "ancient manuscript proclaims: “Align the relics you can see, across or down in groups of three. Turn all squares to solid gold, the path to riches will soon unfold”, and that’s pretty much what you have to do in the game.";
fDesc[3] = "When clicking on a group of 3 or more same-colored bricks, the whole group disappears, and the hole is filled first by the elements falling from above. If a column is cleared, the elements move to the center of the field.";
fDesc[4] = "tiles for bonus points in the Tournament mode to beat the other player and increase your rating higher and higher.";
fDesc[5] = "time. Don´t forget to keep your customers happy so they will give you bigger tips. Drive all kind of cars from different kind of customers. Enjoy this great game as you work on a parking lot.";
fDesc[6] = "to move to the next level. The player will have to take decisions very fast because winning time is the most important thing. When starting the game you will have the possibility of choosing the difficulty level: Normal, Hard or Genius.";
fDesc[7] = "solitaire with inlay puzzle fun. Watch beautiful vistas subtly change as you progress in this perfectly harmonious union of two all-time classics!";
fDesc[8] = "Royal Palace, the last citadel of evil in this magic land. Get ready to complete 82 different levels to bring back former splendor of the castle";
fDesc[9] = ", short-answer, jumbled-sentence, crossword, matching/ordering and gap-fill exercises for the World Wide Web. Hot Potatoes is freeware, and you may use it for any purpose or project you like. It is not open-source.";
fDesc[10] = "else. Games include MahJongg Spider, MahJongg FreeCell, MahJongg Gaps, and Four Rivers.";
fDesc[11] = "tile-matching adventure that begins over 10,000 years ago. Match magic gold tiles and travel through 12 Japanese eras, unlocking wisdom that will guide you to the Emperor’s lost treasures!";
fDesc[12] = ", and Amazing Action. Although the game mechanics is the same for the four options, what changes is its level of difficulty and puzzle solving.";
fDesc[13] = "and you win. The row needs to be led with a cursor, which you navigate on the playfield. The cursor acts as a needle leading a thread.";
fDesc[14] = "world! Go on an aromatic adventure of coffee collecting in House Blend mode, or try Espresso mode for a quick shot of matching madness.";
fDesc[15] = "electable. Each time you find a couple of matching tiles you have to point it out by clicking on it, and the tiles will disappear from the board. You can try this game for 60 minutes before you buy the licensed version.";
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 = '...';
}
}