var fDesc=new Array();
fDesc[1] = "universe of Star Wars movies. The game tells the story from the times when the Galactic Republic falls to the destruction of the Death Star (Episode III and Episode IV).";
fDesc[2] = "imagine comes to Earth and the war that takes place there. Set in the not too distant future, the story takes you to lead all kinds of units against the forces of the universe, which have been averted against the Earth.";
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 = '...';
}
}