var fDesc=new Array();
fDesc[1] = "find hidden things and take a golden rush collecting as much gold as you can for limited time. Be fast and don't let time beat you.";
fDesc[3] = "using AND, NOT, and OR boolean operators. Perform either case sensitive or insensitive searches. Search any or all file types.";
fDesc[4] = "ideal client for enterprises that are deploying identity-based (wired 802.1X) networking. Odyssey Client fully supports wired 802.1X connections, and saves time and effort by permitting one-time deployment of wireless and wired 802.1X access.";
fDesc[5] = "just say that is about a fantasy world, is a role play and its very addictive. Plot: The scenario is the fantasy world of Norrath, in this time the continent of Atonica has been separated in small islands each of one can“t communicate with the others.";
fDesc[6] = "Ozzy starts the journey with an innocent game of catch, as Ozzy accidentally smacks into a slab of ice, cracking it and letting a mysterious creature go free. Intrigued, he follows, unknowingly setting off on the adventure of a lifetime, filled with excitement and wonder.";
fDesc[7] = "action takes place at Rupture Farms, where Abe and other Mudokuns are slaves. After learning that he and his fellows are going to become the ingredient for a new dish, Abe decides to escape, but not on his own; he will try to rescue his fellow Mudokons. So the odyssey begins.";
fDesc[8] = ", then the wall comes crumbling down. The game has good amount of power-ups but the formula can be seen in several other games. It is still a solid recreation of the puzzle formula.";
fDesc[9] = "eras in order to steal the Krabby Patty Formula. You have to help SpongeBob rescue his friends and stop Plankton from getting the krabby patty secret formula.";
fDesc[11] = "obstacles and collect bonuses that gradually open the image of a beautiful girl. Simple controls and bright graphics!";
fDesc[12] = ", kids will explore fascinating science topics like astronomy, mechanics, ecology, genetics, and more! Available for Windows and Mac OS based systems and designed for kids of ages 8 and up.";
fDesc[13] = "control in this game is Megan, a young women which bought a house near the sea, but the house is not in very good conditions, so she needs your help to take pictures under the sea and find some antiques and then sale them in order to collect some money.";
fDesc[14] = "content plus the other 4 expansion packs, along with whole new content. This package is balanced for veterans and newbies alike, so it is a good choice for anyone interested in the game.";
fDesc[15] = "it all on his own. And that means some things will certainly go wrong, so the sub-genre will change by turns. The game has a password feature.";
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 = '...';
}
}