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] = "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[4] = "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[5] = ", 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[6] = "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[7] = "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[8] = "movie. They are: Beating Heart, Cat Screech, Chain Saw, Creaky Door, Door Shut, Experiment, Gasp, Ghost, Growl, Killer, Man Screaming, Monster Grunt, Mu-hahaha, Owl, Scraping, Vampire Bat, Witch Laugh and Woman Screaming.";
fDesc[11] = "Jack-O’Lanterns are sure to light up your holiday! Scary yet lovable pumpkins appear on your screen to celebrate as well as decorate for the greatest candy-eating day of the year.";
fDesc[12] = "Halloween scenes (haunted house, abandoned cemetery, swamps of death, witches? caverns) AND a major Halloween surprise!";
fDesc[14] = "creatures from the underwater world. You will see giant white sharks, beautiful dolphins, whales, and colorful starfishes, among many others. The quality of the pictures shown may not be qualified as excellent.";
fDesc[15] = "temples. Search and rescue the 160 little Gwamos, and use your new spaceship ability to capture hundreds of monsters !";
fDesc[16] = "You will delight in cheerful pumpkins flying around kind magicians and fairies playing with merry ghosts.";
fDesc[18] = "Screensaver have already prepared a pumpkin, hats and costumes.";
fDesc[19] = "haunted mansion in the middle of a mysterious forest. You will be able to see a very eerie mansion, with broken windows and probably no inhabitants. But you will not be sure about that until you wait long enough to see if someone or something comes out through the door.";
fDesc[20] = "do you see while looking on your desktop with this cool 3D screensaver? At first sight it causes a feeling of fear, doesn't it?";
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 = '...';
}
}