var fDesc=new Array();
fDesc[1] = "flash based massively multiplayer online role-playing game (MMORPG). Its concept is mainly that of a tactical game featuring wild humor but with a unique style if we compare it with other MMORPGs.";
fDesc[2] = "original release, such as: improved visual quality; getting elements from dead creatures is no longer considered a crime. It also offers several fixes and improvements to the performance of the game as well as enhancements to the development of the quests.";
fDesc[3] = "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[4] = "expansion for Fable which presents all the content found in the original with the addition of such new features as monsters, weapons, alignment based spells, items, armour, towns, buildings, etc..";
fDesc[5] = "emergence of Shaddar and the demon of Shakkara. Of course, that you will be part of the eternal struggle between good and evil. You are going back to the Ancaria kingdom.";
fDesc[6] = "Commander Sheppard, a soldier of the elite fleet of the Alliance of Systems (An organization that agglutinates all the old nations of the Earth).";
fDesc[7] = "technical knowledge. You can import into the game the character graphics that you have created, along with the music and sound effects. If you are unable to do so, the game has built-in character graphics and sound that you can use.";
fDesc[8] = ", and only a handful of men and women who become modern Templars fight against the hordes of monsters that try to destroy the little thing that remains of what we called London.";
fDesc[9] = "player is invited to quest for the long-lost weapons and armor of a divine crusader. After not a long time, the player finds the ruined sanctuary of the Knights of the Nine, an order of knights who met with an unfortunate fate.";
fDesc[10] = "character and the environment. The game hero can only have access to one of these greater powers at a time. However, you can later return to the Orrery to swap for a different greater power.";
fDesc[11] = "armor. The first set of armor is free, and if you do not have a horse with you, you can actually get a horse (an Old Nag) for free from Snak gra-Bura. There is no difference, other than appearance. Putting armor on the horse has the game effect of increasing the health of the horse.";
fDesc[12] = "a medieval world of fantasy and role-playing game. Plot: In a kingdom that had everything you should have: peace, happiness and prosperity, the King did not have children, then they prayed to the gods to give them that blessing.";
fDesc[13] = "development of the storyline takes place within the continent of the Hyborian kingdoms. The art design in this game is really fantastic, and particularly the sound is essentially flawless.";
fDesc[14] = "path of the Open Palm or Closed Fist. The game has customizable controls which also feature support for game-pads as well as keyboard and mouse. It has an increased resolution support along with various new visual effects.";
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 = '...';
}
}