var fDesc=new Array();
fDesc[1] = "single player adventures, or in large head-to-head guild battles. Guild Wars is a mission-based game set in a stunning 3D fantasy world that offers excellent support for guilds.";
fDesc[3] = "Plot: In this game you will go to Europe in the Middle Age, where everything was controlled by the feudal lord. You will have the opportunity to became a member of the European society of the Middle Age.";
fDesc[4] = ", tell stories, create your own world and meet interesting people from all over the world.";
fDesc[6] = "strategy, role, management and social interaction, all this in the Middle Ages in Europe. Plot: The idea of the game is to live the life of an individual with ambition to progress in the medieval society.";
fDesc[7] = "only things that were added are four new scenarios depicting Venice and its neighbors on the Adriatic Sea, some new professions, and a few bugs.";
fDesc[10] = "terror, a group of courageous men and women has gathered to improve their skills to fight against the evil guild and bring justice back to people's lives. Experience the ancient Chinese Kungfu and magic, enjoy the endless beautiful scenery and mythical environment in which you can develop your own character and interact with other real-life and imaginary beings. This marvelous MMOG (Massively Multi-user Online Game) conquers the hearts of millions of players. Beautiful 2D artistic backgrounds and advanced 3D effects bring characters and environments to life. Sophisticated equipment system with exotic ancient weapon and customized motions designed for each weapon. A lot of treasured gems are waiting for you to explore, which will grant unimaginable power to its owner. Four character types to choose from: gallant Trojan, righteous Warrior, unsurpassable Archer, resourceful Taoist, which...";
fDesc[11] = "game. It is in constant development and user's ideas are taken into account by developers. The combat and action is great in this game, if you are tired of fantasy MMOs then you should give this a try.";
fDesc[13] = "completely customizable. Comprehensive reports, interactive graphs, import and export options.";
fDesc[15] = "discover the reason for thier guild's deception.";
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 = '...';
}
}