var fDesc=new Array();
fDesc[1] = "standard for the future of RTS gaming once more, C&C 3 takes you back to where it all began—the Tiberium Universe. Published by Electronic Arts Inc.";
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.";
fDesc[3] = "has a ripper that can analyze other game files. It is simple to use and very powerful. If you handle resources from different games, this is the only program you need.";
fDesc[4] = "that this title is \"a perfect mixture between \"Wing Commander\" and \"Battlestar Galactica\". Indeed, it is a game that brings a lot of action in its over 30 challenging missions with carrier management and ranking system.";
fDesc[5] = "year. Xeno Assault II will capture your mind with breath taking game play and heart pounding arcade action!";
fDesc[6] = "flash tools: preview and browse flash movie, capture flash image and set it as wallpaper, create flash screensaver with ease etc.";
fDesc[7] = "Along the way to your final encounter are many warlords of the underground you must destroy.";
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 = '...';
}
}