var fDesc=new Array();
fDesc[1] = ", Predator, or a human Colonial Marine. Each character has different objectives, abilities, and weapons at their disposal. The single-player campaigns present the player with conventional series of levels to progress through that are designed around the abilities of each character.";
fDesc[2] = "lands Comet: Explodes on contact into six highly bouncy fragments Sunburn: Explodes near tank, fires laser beams that bounce off terrain Riptide: Sends out a horizontal wave of reflective missiles";
fDesc[3] = "program offers ready-to-use light effects (presets).";
fDesc[4] = "glows, flares, lighting, etc. and brighten up any picture. The application is good for professional designers as well as for beginners. It offers a comprehensive set of built-in light effects that can be applied to any picture or photograph.";
fDesc[5] = ", picturesque landscape, boundless expanse, clouds and lens flares effects, dynamic camera, and professional 3D graphics.";
fDesc[6] = "space. It is very customizable and even allows users to include their own music: a playlist or a single file. The images look real and change all the time.";
fDesc[7] = "absolutely for free. It has been developed by GameFall.com using rich colorful marvelous 3D graphics resulting in great visual effects. Dino Glade is letting you have a look at the dinosaurs’ world.";
fDesc[8] = "animated dinosaurs, 3 scenes, clouds and lens flares effects and other advantages single it out from others. Free download!";
fDesc[9] = "includes nebulae, stars, clouds, atmosphere, cities, and more! Fully configurable.";
fDesc[13] = "fog highly improves the realism and image quality. Industry-unique motion blur effect and rapid dynamics provides fantastic movie like feel.";
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 = '...';
}
}