var fDesc=new Array();
fDesc[1] = "a five-headed dragon in order to win back royal treasure and free an abducted princess";
fDesc[2] = "excellent production. Opposing Front is its so called expansion. However, the quantity of contents of this expansion is enough to be launched as an individual new game.";
fDesc[3] = "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[5] = "life. The search option for specific words and phrases helps you in your Bible studies. It also explains important concepts and relationships through the helpful charts other than guiding you over many of the life related issues such as ambition, self-esteem, divorce etc.";
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 = '...';
}
}