var fDesc=new Array();
fDesc[1] = "Kane, a convict who is on his way to death but he is suddenly saved by his former partners and current creditors, The7, and taken into the prison transportation van.";
fDesc[2] = "card games such as Spider, Freecell, etc. And you will be able to learn solitaires not found elsewhere.";
fDesc[3] = "level, gathering gold and staying away from monsters. The player can dig holes to trap monsters. Collect all gold to win!";
fDesc[4] = "solitaire games. All thirty solitaire games offer a thorough explanation of how to play in the beginning Some of the solitaire are foundation building type and other discard type.";
fDesc[5] = "astonishingly evil voices, like that of a Lich Lord, Goblin, Wraith, and many more. Basically this tool doubles the fun of the MorphVOX Voice Changer Software, and serves as an add-on utility, rendering amazingly funny sounds to all its users.";
fDesc[6] = "who needs to collect treasures in order to proceed through levels. To do so, the players will have to avoid (by digging or setting traps) or kill the enemies that will try to stop them.";
fDesc[7] = "BomberMan. Does not contain violence and suitable for kids. Online contest for best players. Extra levels/missions will be released.";
fDesc[8] = "eat him. They are fast and cruel. In order to live a long life try to be quick and smart.";
fDesc[9] = "With beautiful playing cards, full undo and redo of all your moves, automatic game saving, and complete statistics.";
fDesc[10] = "and dream about vast-scale machination and stock market game but can't make it real - this free game was made to make you happy!";
fDesc[11] = "industrial areas. 100+ land, air and water enemy units will make your life worse then hell. If you pass it, tell us how you did it. Free trial.";
fDesc[12] = ", Beleaguered Castle, Cruel, Demons and Thieves, Freecell, Klondike, Pyramid, Russian Solitaire, Sea Towers, Spider and Yukon, to name a few of the most popular. Each game will have its own rules, but they share some common features.";
fDesc[13] = ", Spider, Klondike, Pyramid, Golf,Aces Up,Beleaguered Castle,Canfield,Clock, Corona,Cruel,Duchess,S carab,Yukon";
fDesc[15] = "and to gain revenge on the cruel empire that put you there. Avernum is a classic fantasy role-playing 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 = '...';
}
}