var fDesc=new Array();
fDesc[1] = "do this, the chain disappears, and the dragons in the eggs are freed. You must leave no dragon eggs left to end the levels.";
fDesc[2] = "Commander Sheppard, a soldier of the elite fleet of the Alliance of Systems (An organization that agglutinates all the old nations of the Earth).";
fDesc[3] = "different colors with numbers on them. You will also have a card with numbers and colors. Every time you see that the number is both in the line and on your card you will have to click on it so that it disappears and you get points.";
fDesc[4] = "loaded application that creates 3D animations of characters from a photo or still image. The user can pick from a number of funny effects like masks for creating custom back-grounds, advanced face settings for eyes, lips, teeth and mouth, and they may be imported to match a character accordingly.";
fDesc[5] = "things, you grow, and become able to eat bigger fishes, provided they are smaller than you. You can join your counterparts from all over the world through Internet and beat your best score.";
fDesc[6] = "control a central character (a Chameleon, this time) that has a gem in its mouth, and a long line of gems going around it.";
fDesc[7] = "Like in other Zuma clones, as Luxor and a million more, you´ll have to shoot balls to groups of three or more ball of the same color, that come rolling from the top of the screen.";
fDesc[8] = "committed the crime. You will be involved into a suspense novel where a private detective called Alan Baxter will be the key character to solve this mysterious murder.";
fDesc[9] = "of the fiery lava mouth and shift from scorching meteorites. The sea of adrenaline is waiting for you along the road.";
fDesc[10] = "model. It recognizes a square zone of your face (eyes, nose, mouth), and stores that information as a password. You will need to enter your Windows password in order to start using your face to replace it";
fDesc[11] = "long, fluffy tail. He needs this trunk for the mini-games in Bliss Island Deluxe. Puff and blow with Hoshi's trunk and move the objects into a hungry mouth or around all sorts of obstacles.";
fDesc[12] = "any musical instrument, easily and quickly. All you need is creative thinking about music and sound.";
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 = '...';
}
}