var fDesc=new Array();
fDesc[1] = "lost parts of the powerful crystal. Playing this game is very easy and fun, move with the arrow keys and tab to swim up and reach caves under the surface of the water. Be careful with your enemies and don't let them touch you, some can kill you.";
fDesc[2] = "power and raise Atlantis, the submerged continent. This game is a great challenge of speed and logic. Graphics and moves of this game are well done and the game is very entertaining.";
fDesc[3] = "When you create the match, those tiles disappear from the board and are filled up with new relics and artifacts. Sometimes, the new tiles will create new matches triggering a chain reaction. If you create matches over the stone tiles, you pass the level.";
fDesc[4] = "Crystal Dynamics manages to improve it on almost every aspect of the original by rebuilding the game from scratch, but without taking away all the things that made it so special, such as its fantastic and hugely memorable level design.";
fDesc[5] = "match together relics from Ancient Egypt. Blue cells will disappear when you make a match over them. You must make all blue cells disappear to advance to the next level. When an artifact appears, you must move it to the bottom of the board, making matches.";
fDesc[6] = "2000 compression artifacts, sharpens and corrects edges without overshooting or noise amplification; and creates unique effects.";
fDesc[7] = ", you are given the task of uncovering the secret treasures hidden there by the Incas for hundreds of years. With great graphics and a match-3 game play, Treasure Puzzle is a great option among";
fDesc[8] = "plot, many levels to play, good gameplay and good-quality graphics. Magic Crystals is a very good option for leisure time, since it is entertaining and easy to play, and most importantly, it is freeware.";
fDesc[9] = "always searching profits, has established a new base to continue the study of a Martian civilization uncovered by the original science team. In general, this expansion meets all the fans' unsatisfied ludic needs the original version could not cover.";
fDesc[10] = "Magic Crystals to form a Scepter, an artifact that will give you super magic powers. To form a Magic Crystal, you´ll have to collect runes of the same kind.";
fDesc[11] = "new clues that will help you solving the riddles written in the letter you received. Enjoy this great hidden objects game that will keep you focused.";
fDesc[12] = "itself) as Atlantis Quest, which is, in turn, not free. You must form groups of three identical tiles by swapping adjacent pieces with your left mouse button. The formed group will then disappear from the board.";
fDesc[13] = "who just dreams about their own garden. This program is very easy and doesn’t require any special computer knowledge. But at the same time, it is very creative software that helps you make a full-featured plan of your plot.";
fDesc[14] = "multi-player code of the game is very stable and reliable, making this strategy game a very good choice to play online against others.";
fDesc[15] = "It combines state-of-the-art search and organization technologies to save your time and boost productivity.";
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 = '...';
}
}