var fDesc=new Array();
fDesc[1] = "interact in the exciting world of Nevareth. Designed to let everyone play, Cabal Online runs even on older computers while still maintaining its scintillating action scenes, lifelike environments, ornate decorations, detailed characters, and non-stop fast action.";
fDesc[2] = "enjoy this challenge in a battle against the thiefs of your treasures. Collect your treasures and ancient pieces to rest your soul and enter the after life.";
fDesc[3] = ", adventure and role, to offer the player a universe where evil is the key to success. Are you prepared to be the new lord of evil?. In this game you must embody illustrious and armed Overlord.";
fDesc[4] = "faces) to the coming Snoods. If they form a group, they will fall, clearing the board. As you launch Snoods the Danger Bar increases and when it fills up, the screen moves down. If a Snood touches the bottom, the game ends.";
fDesc[5] = "dream of many years. From the first moment, you must make a lot of decisions such as whether you steal food from the humans or you will destroy the elves and so on.";
fDesc[6] = "unleashing his evil on the world by overcoming the threat of his minions and rescuing the hearts of those who have failed the same quest previously, to win the game.";
fDesc[7] = "different. It starts presenting the space marine crash-landing on Earth after getting rid of the demons in the UAC facility, but as he lands, he finds out that the demons have invaded Earth so now he must help evacuate the survivors and free the planet from the hell-threat.";
fDesc[8] = "people and defend your castle from invaders. This game is very easy to play and is full of adventures. You will enjoy being a king taking decisions for your people and for the good of your Kingdom.";
fDesc[9] = "Evil, irony, humor... the occasions on which we can embody the figure of evil in a video game can be counted on the fingers of one hand, much less being in a fantasy world filled with elves, dwarves and henchmen, the real strength of an evil man of.";
fDesc[10] = "against evil minions to save princess. Nice game for younger players and older.";
fDesc[12] = "against the bloodthirsty minions of an ancient, forgotten god bent on wiping humanity from the face of the earth. As a former member of the Cabal, you have a good idea of what youre up against, and the odds arent in your favor. But the hunger for revenge can be a powerful ally--and youve got some old debts to settle. (Its a pretty nifty 3D shooter).";
fDesc[13] = "world from the forces of Hell, flying his hot air balloon into the underworld to battle ghosts and recover the holy Cruciforms!";
fDesc[15] = "many gameplay enhancements, and you'll get X the Hyper Ball. Various graphic themes, Ice Episode Demo. Defeat the Ice Lord in the final level.";
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 = '...';
}
}