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[2] = "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[3] = ", tell stories, create your own world and meet interesting people from all over the world.";
fDesc[4] = "more. It is compatible with several popular RPG engines, and has tons of interesting features. For an RPG fan, this software will be a great help to design and generate the game.";
fDesc[5] = "job comfortably in few minutes requiring only a couple of mouseclicks.";
fDesc[6] = "side quests. Attempt to uncover a mysterious conspiracy that is destroying the underground land of Avernum.";
fDesc[7] = "system requirements to play.";
fDesc[9] = "role-playing games. RPA can also generate names, spell books, and equipment as well as function as a dice roller to build character attributes. RPA uses a database engine that can generate and store a large variety of PCs, spells races, classes and more! RPA can also import the Net Spell Book of over 2200 spells with descriptions. You can generate a complete party of NPCs in less than 5 minutes. All characterattributes are covered for generation, including races, classes, characteristics, equipment sheets, thief abilities and more. The character sheet even includes a graphic bitmap image of your PC that can be printed in its entirety. RPA is the most comprehensive generator and database that covers every aspect of building a player character and is certainly an invaluable asset for anyone who enjoys RP gaming.";
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 = '...';
}
}