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] = "dark history of this New Yorker police detective who had to infiltrate with the worst criminals of the local mafia to find out about the death of his family.";
fDesc[3] = "lot of action, easy controls and, of course, a spectacular graphics display . Plot:You will be able to shoot to new enemies.";
fDesc[4] = "In this game you will be a pilot and you will have to perform various missions in hostile skies.At the beginning of the game you will be able to choose your chopper, among different models.";
fDesc[5] = "from but as you win races you will be unlocking the rest of the twelve cars available. There are also fifteen race tracks with different difficulty levels.";
fDesc[6] = "Savannah desert while trying to get back to your New York ZOO. The game is obviously based on the movies. Like with all games of this type, the experience is not meant to be deep or extremely meaningful.";
fDesc[7] = "one coconut palm, and he occupies his time with various activities, like fishing, lighting a fire and cooking food, and many other things.";
fDesc[8] = "cars through detailed futuristic tracks. You´ll have to perform power slides and high-flying jumps, trying to get the 1st place. You will control the car with the arrow keys by default, but you can change the controls as you like.";
fDesc[9] = "tribe with the help of the rest. Build your home, fish for food, play with kids, find a couple and raise a family in this nice game \"My Tribe\".";
fDesc[10] = "landscape, complete with red fog and a starry sky. Multicolored lightning bolts strike all around you, while you hear realistic stereo sound effects. Animated crossline and hieroglyphs add to the mysterious, other-worldly feel. The photo-realistic 3D graphics will impress you.";
fDesc[11] = "to Egypt to visit Velma’s cousin—only to find that she’s disappeared and a spooky old Mummy is frightening the tourists!";
fDesc[12] = "to remove all colored blocks in 30 levels. Drop bombs and outwit enemies to reach places that seem unreachable.";
fDesc[13] = "2. It sounds like Desert Conflict is a mod for Battlefield. The first achievement of this mod was to add a mini capture-the-flag mode. Later, they added a whole lot of features to the mix.";
fDesc[15] = "a precision reproduces all its colors, add to it some music and an unusual design and you will get the game you will never forget!";
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 = '...';
}
}