var fDesc=new Array();
fDesc[1] = "of a few different soldiers fighting for different Allied factions during World War II. Each of the game's 10 missions is split into different stages. The game's graphics are particularly great, specially the smoke effects from smoke grenades and explosions, and sound is nothing less than superb.";
fDesc[2] = "in the next generation of real-time strategy. Battle it out in unprecedented detail on full 3D environments with all-new units, including Aurora Strike Bombers, Dragon Tanks, and much more!";
fDesc[3] = "coordinates, so you can watch the sky on the screen as if you were using a telescope in real life. You can make the illusion more realistic adding atmosphere effects and views including the ground.";
fDesc[4] = "becoming the best tactical shooter out there, and until a couple of years ago, it was the best. Now it is just a great tactical first person shooter. The game puts you on command of a tactical squad of elite police officers.";
fDesc[5] = "the other information about the music is absent or missing-- one time it is the music genre that is missing while the other time it is the cover of an album. So Tagrunner can help the users in properly arranging their music collection.";
fDesc[6] = "Lionheart, in front of the legions of Europe, or the elusive Saladin, leading the Arab army, you will be able to face a bloody war for the sole purpose of conquering the enemy stronghold.";
fDesc[7] = "into a single category, because the game is so rich that it would not be fair to do that. This masterpiece puts you in command of an army of worms who have a variety of weapons. The goal is simple: kill all the worms from the other teams before they kill you.";
fDesc[8] = "side, so your hard disk won´t have to track them down. This is accomplished reading every part of a file, writing them in a temporary place, and the rewriting them in its permanent location.";
fDesc[9] = "and puts a customized calendar, updated daily, over the background image of your choice. Calendarium 4.08 also checks email for multiple accounts and provides a reminder service.";
fDesc[10] = "really amazing in You will find all the information that you need, there are different topics such as people, environment, politics, that will let you have a full picture of the place you are looking up.";
fDesc[11] = "Spas, but she also likes to keep things as Earth-friendly as possible. In the game, you are given an empty room, where you will have to base your company at. The game resembles a Theme Hospital of sorts.";
fDesc[12] = "be seen from your location in the Earth, or any given location in the planet. Just by choosing your location in the map, you will give the program all the needed data to display the sky that can be seen from that place.";
fDesc[13] = "the feeling of flying at high speeds without any of the risks involved. It will show you a group of fighter jets speeding through the sky, almost all of the time at low altitude.";
fDesc[14] = "able to see the lights of big cities as our planet rotates. You can see the change from night to day as the Earth slowly revolves around the Sun, as well - with very realistic effects.";
fDesc[15] = "shows a snowy landscape with an igloo in the center of the scene. You will be able to watch as some little girls come out of the igloo to play in the snow. And you will listen to their giggles and laughter too!";
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 = '...';
}
}