var fDesc=new Array();
fDesc[1] = "way through the game into the end. Magic Balls 3.5 combines great graphics and lighting effects to create a 3D visual effect in the balls, so your experience becomes richer.";
fDesc[2] = "marks representing hidden dig sites. You have to complete your treasure collections to unlock them. In this game you’ll be exploring ancient ruins, discovering fabulous treasures and winning piles of coins.";
fDesc[3] = "the hit action-puzzler is here! Glory and adventure await in your quest to save Egypt from doom. Defeat the rebellious princes of Megiddo before they overthrow Pharaoh and plunge two lands into chaos!";
fDesc[4] = "Very original backgrounds. You'll find that the difficulty increases level after level till you'll think they are impossible to finish but even then you won't be able to leave the game for a long while!";
fDesc[5] = "You will spend a lot of time playing it because it is an easy and mind free game. The purpose of Chainz 2: Relinked is to rotate links to create matches of three or more or make use of the four-way link to make matches around corners and finally clear the board.";
fDesc[6] = "Bomb power-ups to help you clear the grid. Play your discs right and you'll create powerful cascades. This match-3 puzzle delight will have you Sprung!";
fDesc[7] = "that will appear from the top of the screen. You can collect power-ups to gain access to more sofisticated ammo, more power, extra lives and score points.";
fDesc[8] = "to these amazing places. Travel around the world in order to re-built the 7 wonders; provide workers with construction materials as you destroy blocks of gems in the puzzle games.";
fDesc[9] = "the galaxy. This fast-paced game is full of action, as enemy ships and huge meteorites appear from all sides, forcing you to avoid them while at the same time shooting your enemies and collecting the power-ups.";
fDesc[10] = "brick-busting game to a new and more thrilling level. Playing Ricochet is very easy, you only have to control you shielded ship with your mouse and destroy all the bricks with the ion sphere.";
fDesc[11] = "ensure protection of the computer system, all its components and peripherals, and the data. If there is a power loss, the software automatically saves all the user files and safely turns off the computer in an orderly manner.";
fDesc[12] = "Sudden power failures can do a lot of harm to computer system, components, external tools and most important your data. PowerPanel™ from Cyber Power System is a powerful tool which allows to control and monitoring of your UPS to provide protection.";
fDesc[13] = "you explore a vast world of arcade fun. Unlock new features, locations, and surprises as you bring down each level brick by brick. Featuring addictive game play, tons of exciting power-ups, and fantastic graphics, Adventure Ball is fast and fun excitement for the entire family.";
fDesc[14] = "Link letters to find words hidden in the grid and glorious treasures will dazzle your eyes. Find long words and unleash electrifying power-ups to aid your quest. A word challenge of epic proportions, Acropolis is legendary fun for the entire family";
fDesc[15] = "battery is very low. This system provides great protection of data and peripheral devices. It also save all files before shutting down the computer so there is no data loss chances if the system is running out of power.";
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 = '...';
}
}