var fDesc=new Array();
fDesc[1] = "have to collect some items to enhance your score, get extra lives or obtain a weapon. For example, you can get a knife that can be used ONCE against a monster.";
fDesc[2] = "reflects the hack'n'slash spirit of Dungeon Siege, with some modifications. As it happened in the first part, every character improves his skill, as we make use of it, and becomes a real specialist in his field.";
fDesc[3] = "level dungeon, a new set of armor pertaining to an assassin, new clothes and new weapons. And finally, it also adds new items and nine new scrolls which turns iron ore (new as well) and silver nuggets up one level(i.e. Iron ore turns into silver and silver into gold).";
fDesc[4] = "game was developed by Gas Powered Games and published by 2K Games. This is the expansion to the second half of a game which is not limited to repeating what has already been seen, but adds some new features to improve the original.";
fDesc[6] = "expansion pack to Shadows of Amn. The game draws the Child of Bhaal saga to its dramatic conclusion. It is bundled with 30-50 hours of game play, 80 new areas spread across a dozen adventure areas,";
fDesc[7] = "Games and published by Microsoft Game Studios. We return to the world of Aranna to start a new adventure in this expansion of Dungeon Siege. Now we are brought the Kingdom of Ehb to solve an antique mystery.";
fDesc[8] = "universe. Plot: In this game you will be able to create your own character and define all his or her skills: if you're a warrior, you will have to choose different weapons, if you're a wizard, you must choose the most powerful spells.";
fDesc[9] = "an exciting realm of magic and adventure, with a huge helping of laugh-your-butt-off. Dungeon Runners is FREE to download and play - check it out";
fDesc[10] = "that you get a randomly generated dungeon every time you start a game. The problem is that the story is too loose and doesn't add depth to the game.";
fDesc[11] = "rescue the king. It’s a very entertaining game full of creatures and bugs to fight. In some occasions you must use some magic or special power to pass and overcome those creatures. Egoboo runs in Windows, Linux and Mac OS platforms.";
fDesc[12] = "the universe. Dungeon Lords Collector's Edition includes a bunch of new features such as quests, spells, effects, creatures and amazing new heraldries.";
fDesc[13] = "interpreter, the client can display images and play sounds in MUDs that allow it. This adds a whole new depth to the game, and also, the client is free. Pueblo is a good choice for traditional MUD gamers.";
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 = '...';
}
}