var fDesc=new Array();
fDesc[1] = "zombies, which want to destroy your vision of happy future. It's real good continuation of Fallout 1/2. New adventure in the habitual environment and modern good-looking form.";
fDesc[2] = "all the tension and the entertainment of the film. First-person action sequences blends with third-person components, in your trip through the Skull Island (almost all of the game action take place there) you are both, Jack Driscoll and King Kong.";
fDesc[3] = "previous game, but with a very different major character, Belial, who is a demon and your mission will be to swallow your enemies souls. This time, the scenarios will be from the ancient Egypt, the American Civil war and other historical events.";
fDesc[4] = "terrain. Volcano: Massive eruption that throws fire and debris everywhere. Pedestal: Puts the tank up on a high pedestal. Fire Storm: Multiple explosions with a sea of awesome bouncing fireballs.";
fDesc[5] = "looks like a real flame. Features: - Real-time heart beating! - Very realistic real-time fire effect and more";
fDesc[6] = "flaming molten rubber that coats the terrain. Side Kick - Bullets fire from the sides of the playfield. Blockade - Encase enemy tank in a hollow shell. Stun Gun - Two bullets are launched, spreading out over time.";
fDesc[7] = "beautiful but at the same time, it has a very eerie look. You will see the castle standing proudly in the middle of a forest, bathed by the moonlight.";
fDesc[8] = "that special person in your life. It will display a heart in flames, burning and pulsating to remind you about your loved one.";
fDesc[9] = "fire. Highly realistic animated flames licks your screen and burns your desktop.Flaming customizable text hovering in heat of flames. When your screen overheats enough, it's surface (with your work screen!) burns away like a newspaper put on fire.";
fDesc[12] = "is a free screensaver created by RateMyScreensaver.com containing 18 high quality photographs.";
fDesc[14] = "breaking loose on this little island paradise in the middle of the ocean!";
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 = '...';
}
}