var fDesc=new Array();
fDesc[1] = "battle adventure. Each level will speed up your challenge and will put some adrenaline to your fun. You will love this shooting battle and the challenge of beating your score record.";
fDesc[2] = "almost feel the gushes of wind! You sway up and down in the waves listening to the thunders and watching the lightings as the sun goes down in the horizon. The FX sound is awesome providing all the fantastic realism of atmospheric effects!";
fDesc[3] = "weapons and devices, 3 game modes (Campaign, Firing range, survival), Worldwide Hall of Fame and much more.";
fDesc[4] = "things: a raging storm suddenly stops, he switches the lights on and discovers that his room looks somewhat different. But when he tries to come out...the door slides up, and he discovers a strange new world!";
fDesc[5] = "problem-solving skills as they choose their wagon party and supplies, read maps, plan their route, and guide their team through the wilderness.";
fDesc[6] = "decision-making and problem-solving skills as they choose their wagon party and supplies, read maps, plan their route, and guide their team through the wilderness.";
fDesc[7] = "background for stylish analog clock. You will hear calming sounds of raging water and clock's sounds.";
fDesc[8] = "many hours for it's mystery. This fantastic flame screensaver brings fire to your screen.";
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 = '...';
}
}