var fDesc=new Array();
fDesc[4] = "levels and three game modes (including stunt mode) await you. There are 11 unique sea creatures hunting you down. You will meet Missile Fish, Robo Birds, TNT Turtles, Robo Sharks, and more!";
fDesc[6] = "Goblins and Robo Hounds on a mission: to take over the city. Your objective will be to stop these creatures by shooting them with your gun, making your way along the place and struggling to survive.";
fDesc[7] = "simple robot to an esteemed winner of the labyrinth contest.";
fDesc[9] = "processing";
fDesc[10] = "servers and integrated PGP encryption/decryption. Also features integrated e-mail, ZIP archive support, COM/OLE, and single command file synchronization.";
fDesc[12] = "absolutely obsolete and therefore they must be killed. Take your gun and hit the road in search for humans.";
fDesc[13] = "tools you need to cost your jobs quickly and create all your paperwork. Everything is fully customizable.";
fDesc[14] = "the half-human half-cyborg flying machine of the title, you are faced with many levels to clear of enemies.";
fDesc[15] = "example 12-WinControl to position a window. Automate repeated tasks in Windows. It has never been easier.";
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 = '...';
}
}