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] = "developer's website and evaluate for free for a 30-days period. The program is very easy to install and anybody can do it, but during installation we have to restart Windows twice, firstly, after uninstalling any other antivirus program and to activate the program itself.";
fDesc[3] = "Kane, a convict who is on his way to death but he is suddenly saved by his former partners and current creditors, The7, and taken into the prison transportation van.";
fDesc[4] = "published by Atari. Inspired by the writings of Andrzej Sapkow, the Polish writer, The Witcher is a title in which a warrior will face some monstrous beings known as the \"werewolves\".";
fDesc[5] = "trial version for free from the developer’s website. While installing we can choose the engine options and select high quality objects, high quality textures, mip-mapping, sound enable, joystick, joystick sensitivity, and video mode.";
fDesc[6] = "includes new characters, new animations, new graphics and updated content. This all makes the game more enjoyable, if you needed to be. The Witcher enhanced version is THE game RPG fans should buy.";
fDesc[7] = "religious and ethnic violence a joint force of western countries is coming down to the country to control the situation. The game can be played online with up to 150 players or you can play it on LAN with about 64 players.";
fDesc[8] = "controversial video games that have ever existed, mainly because of its extreme violence. Plot: The protagonist of the game is the murder James Earl Cash, defendant for the murder of fifteen people in Carcer City";
fDesc[9] = "BomberMan. Does not contain violence and suitable for kids. Online contest for best players. Extra levels/missions will be released.";
fDesc[10] = "format available. Twins Video Player is not just a regular video player! Twins Video Player takes your mutlimedia-experience to a higher level. It's innovative interface makes it perfect for the experienced users as well as the noobs. Twins Video Player is also very fast and doesn't use all your memory. Watching DivX Movies on a slow p.c. is no longer impossible! Twins Video Player simply does it! Twins Video Player goes even further than other video players by providing you with options like a Security Wizard, Which can be used to protect yourself or your children from unwanted movies. (Sex, Violence, etc) Where other players contain spyware and do not respect your privacy, Twins Video Player does not contain any of these, and does respect your privacy!";
fDesc[11] = ", registration offers over 500 extra games (2500 levels) and game editor. Sound effects, worldwide Hall of Champions.";
fDesc[12] = "right chimneys before dawn.";
fDesc[13] = "really funny and easy to play. The game is about an agent that has been assigned to recover the seven largest diamonds in the world and save the world from E.V.I.L in a side-scrolling and action-packed adventure.";
fDesc[14] = "weapons, ammo, keys, and try to rescue the world from the dead. The game has nice graphics, easy controls and trains you how to play.";
fDesc[15] = "websites of a kind, such as Pornography/Nudity, Violence, Online Orders, Criminal Activities, Drugs, Weapons, Social Networking, and many more.";
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 = '...';
}
}