var fDesc=new Array();
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] = "tiles for bonus points in the Tournament mode to beat the other player and increase your rating higher and higher.";
fDesc[4] = "exciting colorful graphics that keeps players wanting more. It is a great tool for people who want to practice their English vocabulary. It is based on the American TV show with the same name. The player can choose the characters appearance, including hair color and style.";
fDesc[5] = "user can also choose between five levels of complexity - from Easy to Extreme. Each puzzle is generated randomly so there is an almost limitless selection.";
fDesc[6] = "pictures or choose from the supplied thematic galleries. Random jigsaw pattern is used for each new game. Generated puzzles can be also printed on paper.";
fDesc[7] = "great nonetheless. In the game, you play a new character, who apparently was on the same flight as the survivors, but he can't remember anything prior to the crash. Jack asserts that he has amnesia brought on by the shock of the crash.";
fDesc[8] = "free to download from the developer’s website. The game has been developed to be played during those moments when you need a gateway to free your mind from all the tensions of the day.";
fDesc[9] = "game. Playing it you can develop your visual skills – observation, recognition and so on. Note that to play this game you should have DirectX installed on your PC.";
fDesc[10] = "boxes, each containing five puzzles. The interface is extremely simple and modest, but the real strength of this game collection is in its challenging and intensive action.";
fDesc[11] = "the Puzzle Challenge and work your way through increasingly difficult puzzles. As you play, you'll unlock more and more puzzles to assemble in your Puzzle Collection.";
fDesc[12] = "help you to have a relaxing break and spend a good time at a PC screen.";
fDesc[13] = "using your own images. The program is pretty customizable and allows you to select the background color, sound effects, interface language, among other things.";
fDesc[14] = "puzzles for you to solve. You can use the seven geometric figures to form many figures like animals, symbols, and other, more complex figures. The demo version is limited to about an hour of game.";
fDesc[15] = "(this means that they have motion) and 12 bonus still images puzzles. The program is very intuitive and easy to use, and features a nice and well-organized user interface.";
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 = '...';
}
}