var fDesc=new Array();
fDesc[1] = "the galaxy by this. Is a game in which one can lengthen the line-up wherever you want whenever you begin a life of the universe is completely new and very large.";
fDesc[2] = "4 unique tanks of action-puzzle adventure!";
fDesc[3] = "awesome wildlife scenes. Challenge yourself with four distinctly addictive game modes. And you can save your progress as the game goes on.";
fDesc[4] = "framework for this. The game includes the M3 car and the Nurburgring race track. You can race in single player or multi-player mode. It is a good solid package that you can get for free.";
fDesc[5] = "fans of word games. Including the amazing “Boggle Blast” mode, Boggle Supreme has been packed with lots of great features such as a new computer player called Betty who will teach you the game and also challenge you!";
fDesc[6] = "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[7] = "with according to their interest. The first option is Challenge; the player will have to complete the required poker hands displayed in the box of the screen before the cards run out. The player will receive an extra bonus for each card and time remaining.";
fDesc[8] = "game you can select to learn, to practice and solve some puzzle moves and to challenge other players and opponents. In this game you can select many opponents with different abilities.";
fDesc[9] = "The game offers a lot of nice tracks and all the teams, and it provides some really exciting racing. However the game has seen better days and all its features have been surpassed by the newer simulator games.";
fDesc[10] = "to guide the character while it shoots bricks and obstacles running around the screen and collecting its baby chicks. As in every brick-busting game, you will have power-ups, bonus worms and treasures that will fall over you as the levels progress.";
fDesc[11] = "develop stress management skills and develop creativity. By tracking your brain capacity over time, Brain Challenge will help you identify your mental strengths and weaknesses and help you become stronger overall. Try this game for 30 minutes before buying.";
fDesc[12] = "consists of a 9x9 grid which you will need to fill in with numbers using logic and reasoning. This challenge game has kept the entire puzzle lovers perplexed!";
fDesc[13] = "the United States. You will have to compete against other racers, that are controlled by the computer. The police will chase you, you will also have to avoid them.";
fDesc[14] = "moved horizontally using the mouse. We must stop the balls that fall from the top of the screen. Each ball we miss will increase the computer's score. To increase our own score, we must shoot the collected balls and hit the targets.";
fDesc[15] = "Challenge Deluxe is a unique take on classic fun. Choose from ten of your favorite solitaire variations including Klondike, Tri-Peaks, Spider and more.";
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 = '...';
}
}