var fDesc=new Array();
fDesc[1] = "do this, the chain disappears, and the dragons in the eggs are freed. You must leave no dragon eggs left to end the levels.";
fDesc[2] = "Ball, and Big Ball, multiple ray-traced balls, explosive bricks, an easy to play Kid-Mode, a euro-techno sound track, and highly addicting game play. New version adds multi-player, more music, and new options.";
fDesc[3] = "features more than 150 3D levels and 3 difficulty settings, which include original maze-like scenarios full of adventure and action. The graphics are awesome and the characters are very funny and colorful.";
fDesc[4] = "powerful as the Nuke. Pillow Fight: Direct damage on impact, with exploding feathers for splash damage. Sink and Swim: The enemy tank 'sinks' into a hole, as hail showers them from above.";
fDesc[5] = "by shifting a jewel with any of the others that surround it. Bejeweled 2 also have 4 game modes: Classic, Action, Puzzle and Endless. There are also some features as screensaver and stats which complete a great game.";
fDesc[6] = "score points by exploding them. Your only help is your faithful dog, Sheriff, who will chase away the thieving polar bears who are trying to take the most important supplies.";
fDesc[7] = "one of the best puzzle games ever done: Bust-A-Move (Puzzle Bubble). For those who don't know Bust-A-Move the aim of the game is to get through levels by exploding dinosaur eggs of the same colour.";
fDesc[8] = "complete, a money bag will fall, and to get it, you must explode the coins right under the bag. When you get the required number of money bags you'll get to the next stage. But, be careful not to let the coins reach the top part of the game zone.";
fDesc[10] = "custards, rabbits, and expanding green peas in this unique Boulderdash-type game. A cave editor is included so you can make your own caves.";
fDesc[11] = "required.";
fDesc[12] = "graphics and original gameplay.";
fDesc[13] = "that care about you, as well as the people that you care for. Now you can just send this screen saver to them, and make sure they receive your best wishes for the coming year. The screen saver is very simple. It will not show you fancy animations or beautiful landscapes.";
fDesc[14] = "illumio frees you from manually tracking everything you care about on the Web: instead, illumio monitors the feeds you choose and groups you join and delivers to you only what's important to you. Because illumio runs on your PC, illumio can privately determine what information matches your interests and then alert you directly on your desktop. illumio groups are the only kind of social network where questions from other members reach you only when you're the right person to respond. You can comfortably send out your own questions to an illumio group knowing that people who match will receive them privately, and nobody else will be annoyed by spam. illumio groups are unique because they actively engage each member at just the right moment, giving everyone the opportunity to share their talent, expertise, and information when they want and how they want.";
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 = '...';
}
}