var fDesc=new Array();
fDesc[1] = "twelfth delivery is the appearance of the user interface. In short, a very complete range of solutions that will be to the liking of the more novice users and those who want to further customize their productions.";
fDesc[2] = "that needs to eat smaller fishes to grow up; likewise, we get points, bonuses, and pass on to next levels. The game becomes more and more interesting (and difficult) as we grow bigger and get to eat our old enemies.";
fDesc[3] = "modify existing PDF documents. The application has the ability to create in batch mode and combine multiple files and multiple file types in a single PDF document, as well as create PDF packages.";
fDesc[4] = "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[5] = "own color and is called upon to lay the eggs of this color.";
fDesc[6] = "using the cursor movement keys, guiding it through the tipical Pacman mazes, this time in 3D. You can fire at your enemies by pressing the space bar. You will shoot in the four possible directions. You can even destroy blocks of the maze.";
fDesc[7] = "will overeat different delicacies, such as mosquitoes, dragonflies and other insects.";
fDesc[8] = "you eat and each time there will be less fishes capable of eating you. Become the bigger fish in the ocean. Enjoy this simple arcade game that show you how to become a predator from being the pray.";
fDesc[9] = "bigger entities than you and persecute smaller things. You have to eat them and grow big enough to eat the others.";
fDesc[10] = "eat him. They are fast and cruel. In order to live a long life try to be quick and smart.";
fDesc[11] = "thrill and excitement. In this game, you goal is to clear the maze with the small face that is ready to eat everything around.";
fDesc[12] = "him to survive in the sea eating the fishes that are smaller than you, and avoiding to be eaten by fishes bigger than you. As you eat smaller fishes, you grow bigger, and so you can eat bigger fishes, that become smaller than you.";
fDesc[13] = "up bonuses along the way and try to find some of the games secrets. This game is made with 3 goals in mind. Fun, fun, fun!";
fDesc[14] = "commands so that your CPU remains cool even when several applications are opened. There are many applications like this, but they often take different approaches. Most of them increase the speed of your fans so that more heat can be exhausted from the surface of the CPU.";
fDesc[15] = "\"Unreal Tournament\"";
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 = '...';
}
}