var fDesc=new Array();
fDesc[1] = "amount of points possible in 20 spins. The game presents 3 modes: Classic, Mixed Matrix, and Patterns. You can change backgrounds, keep track of your scores, and control audio. Not available for Mac.";
fDesc[2] = ", the player has to connect three or more orbs of the same color to make them vanish from the screen, using a bat and a weapon.";
fDesc[3] = "a completely new world, with new rules regarding the schools of magic. It is also the first to depart from the traditional mechanics of the series";
fDesc[4] = "variety of different arrangements to play, organized into what is called “levels”. With a wonderful underwater look interface and a warm music you enter into a welcoming atmosphere while playing this game, achieving its main goal: entertaining you.";
fDesc[5] = ", combining some elements of brick busting games with match 3 mechanics. Apart from being enjoyable and challenging, it is absolutely free.";
fDesc[6] = ", and Amazing Action. Although the game mechanics is the same for the four options, what changes is its level of difficulty and puzzle solving.";
fDesc[7] = "the game wasn't great, but there are nice things about it. For starters, the graphics are awesome. You can ride in four different mountains and you can take any path that you want and you don't have a time limit.";
fDesc[8] = "Registry defragmenting. Also autoinitialization programs can be worked on, deleted or added.";
fDesc[9] = "your galaxy from the attack of hostile ships. The game mechanics is quite simple, you move the ship with your mouse to avoid contact with the enemy’s stars while shooting them with the left button.";
fDesc[10] = "that you will love. Are you tired of pointless games? Dive into the logical world of CubeDrift and solve hundreds of original levels!";
fDesc[11] = "mechanics, Puzzle Park has taken this type of games to a new and more exciting dimension that you will not want to miss. It is fun, easy to play and gamers of all ages will enjoy it!";
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] = "your destination. The game is really entertaining and educational, is suitable for all family members and great for children to buil up their vocabulary.";
fDesc[14] = "two dimensional graphics and animations, PhysProf can display physical correlations in a very clear and simple way.";
fDesc[15] = "money. Easily keep a detailed record and charting of where you money is going in vehicle repairs, and allows you to eliminate the problem.";
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 = '...';
}
}