var fDesc=new Array();
fDesc[1] = ", multilingual, and completely customizable. This utility gives us the opportunity to delete all the useless and obsolete data that we may be keeping in our system.";
fDesc[2] = "entrancing play modes, explosive new gems, and dazzling special effects! Brilliant colors, incredibly smooth to play, good sound effects.";
fDesc[3] = "together. When there are no valid plays, flip a card from the stock and try again. Jewels are dropped onto the board based on how you play the cards. The jewels dropped will match the suits of the cards that are played.";
fDesc[4] = "4000 years ago. Match magic gold tiles as you travel through 11 dynasties and 175 levels. Unlock centuries of wisdom to collect the Lost Dynasty Treasures!";
fDesc[5] = "unlock clues needed to escape from a secret island! You’re stranded on a secret island, and there’s only one way off! Find hundreds of hidden objects underwater and on land that will help you match cards and unlock clues needed to find your way home!";
fDesc[6] = "your brave gladiators! And the Temple of all the Roman Gods will bring you luck! The fabulous Caesar?s land opens its gates in front of you.";
fDesc[7] = "they are automatically removed from the board. In order to get to the next level you will have to make a certain number of matches.";
fDesc[8] = "explosions. You have to join the same kind of jewels, as you do it, they will explode and in that way you will reach points. You will find a lot of precious stone such as ruby, emerald,amber and so on.";
fDesc[9] = "make the cold winter stay forever. Your task will be to find the pieces of the broken mirror, put them together and beat the Snow Queen.";
fDesc[10] = "world with daemons, kings, queens and pixies. You become into a magic master who have to learn tricks, cast spells, and collect magic powders and stuff like that, in order to progress in your journey. You can try this game for 60 minutes or you can try it online.";
fDesc[11] = "wonderful variation, Maui Wowee lets you decide if you prefer to slide objects or swap 'em! Of course, all your favorite puzzle features are here too.";
fDesc[12] = "solitaire with inlay puzzle fun. Watch beautiful vistas subtly change as you progress in this perfectly harmonious union of two all-time classics!";
fDesc[13] = "can download the free demo version and play it for 60 minutes. It features nice graphics and lots of different games and puzzles.";
fDesc[14] = "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[15] = "home. You're cast away in the Secret Island, and your only hope to escape is to find the clues to come back where you belong. If you don´t know which cards to match, you can ask for a hint.";
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 = '...';
}
}