var fDesc=new Array();
fDesc[1] = "Dungeons & Dragons rules. The game is set in the Forgotten Universe campaign. Aside from some technical problems, this is a game for all RPG fans.";
fDesc[2] = "originality of the show that makes Legends. You are going to travel with this game to Europe of the Middle Ages where the life of its people passed through the castles.";
fDesc[3] = "is the net that is following you, if you get closer, you're trapped. Besides the net, there are many other obstacles on you";
fDesc[4] = ", compelling music, and game play. The game has rendering in vibrant 16-bit color along with an isometric; top-down view gives a bird’s eye view of the action. It has 3D height maps for realistic travel over terrain";
fDesc[5] = "real-time gameplay, with the ability to pause the action at any time. A player can generate a new character or bring a current one from \"Baldur's Gate\" or \"Tales of the Sword Coast.\" The player has to fight in battles in the title gradually and there are hundreds of monsters to slay.";
fDesc[6] = "very accurate with D&D games. The dungeons are very well done and entertaining. However, this game might just appeal to D&D crowds, so try it first.";
fDesc[7] = "catch enemies inside. After that you should jump on bubble with an enemy trapped inside and pop them! To increase your score pick up items: fruits, vegetables, diamonds, jewels etc. You can also pick up some items to make your journey easy.";
fDesc[8] = "isn't, as lots of runes are in our way. We must remove the runes by creating matches of three or more similar runes. To do so, we must pick a rune and drag it to the desired position. If we move a rune without making a match new runes will appear in the game board.";
fDesc[9] = "mythological creatures. Beautiful pictures with trees, lakes and mountains will decorate your screen, as well as flying dragons that look almost real. Bright colors and amazing pictures.";
fDesc[10] = "Return the stolen magical Liong dragons in this brain-bending blend of matching madness. Each location presents an assortment of beautiful mask, clever fortunes and amazing rewards.";
fDesc[12] = "Dragons Adventure, an exciting game very similar to the famous Bubble Bobble. You will find a lot of fun and many different tricks through its 150 levels, so I'm sure you will spend many hours at your PC with this amazing game.";
fDesc[13] = ", picturesque landscape, boundless expanse, clouds and lens flares effects, dynamic camera, and professional 3D graphics.";
fDesc[14] = "people of Knightshirr city. Move adjacent items to form groups of three or more identical items to destroy them, search for the items over the stones to destroy all of those and clear each level of this game.";
fDesc[15] = "eliminate all obstacles if you want to advance to the next level. There are about 100 levels to achieve, therefore there's a lot of fun, totally guaranteed, on this simple game.";
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 = '...';
}
}