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] = "the year 1960 of an alternate history. Your plane crashed just in the middle of the Atlantic Ocean and you're the only survivor.";
fDesc[3] = "cartoon-like graphics, several dozens of bonuses, weapons and treasures, a lots of levels and levelpacks.";
fDesc[4] = "wants to go to paradise, where his wife is waiting for him. He must fight against all kinds of monsters of the devil. In your search for the monsters, in each level of the game you will visit a lot of different places.";
fDesc[5] = "regular engineer, being called to repair the communications array of a mining ship in a far-away system. He has also received a weird message from someone within that ship. It all looks like a routine mission.";
fDesc[6] = ", 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[7] = "DinerTown and it is filled with babies to be looked after. The game is about baby management. The game has 50 levels. You have to start from basic and move to expert at every level.";
fDesc[8] = "paranormal storyline from the first game, with new twists. The game's atmosphere is so good, you heart WILL stop while playing it, this is a scary and fun game.";
fDesc[9] = "that different to other pool games already seen, but the stuff around the game is what makes this game pretty unique.The game provides extensive help to get the most out of Cue Club. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[10] = "of titles which represent different missions for Nancy Drew to solve. In Nancy Drew: The Haunting of Castle Malloy, Nancy will be trying to find the missing broom.";
fDesc[11] = "astonishingly evil voices, like that of a Lich Lord, Goblin, Wraith, and many more. Basically this tool doubles the fun of the MorphVOX Voice Changer Software, and serves as an add-on utility, rendering amazingly funny sounds to all its users.";
fDesc[12] = "dynamic, vivid and surely beautiful game appeared. The nice-looking dinosaurs set out on a magical quest. And that's the quest for fire!";
fDesc[14] = "like taken out from a Sci-Fi movie and all the nice features of the game combine nicely to make it very entertaining.";
fDesc[15] = "diving equipment and take you on a journey to the depth of the ocean. Don’t be alarmed. The underwater world is not scary or menacing. On the contrary, it is a world of peace and beauty that you will definitely enjoy with this software.";
fDesc[16] = "typical Halloween characters doing different things on your screen. Watch a skeleton hanging from the roof. Watch a witch flying on her magic broom. And don't forget the Ghosts. They are everywhere!";
fDesc[17] = "looks like lots of laughs – until a huge stone dragon statue comes to life and frightens all of the visitors! With kids' sharp wits, and a little courage, they’ll put the stony menace back where he belongs.";
fDesc[18] = "solution, in the form of the MorphVOX Deep Space Voices 3.3 It is a dedicated add-on program for all the MorphVOX Pro users, allowing them to sound as though they have been taken back into the ancient world.";
fDesc[19] = "optimize your photos and apply a lot of scary effects that will let you to convert your images in ghostly photos, and to personalize them to high extents, but that's not all. Customize text messages, edit screenshots and adjust webcam captures.";
fDesc[20] = "eat him. They are fast and cruel. In order to live a long life try to be quick and smart.";
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 = '...';
}
}