var fDesc=new Array();
fDesc[1] = "that is set in a teamplay, you can choose to be a terrorist or a counter-terrorist. Warning: this great game is very addictive! You’ll download it in a few minutes and you’ll be playing it in less!";
fDesc[2] = "your favorite music files stored on your PC? Then AIMP is a new music player you should download and test it. AIMP is specially popular because it's a simple application that uses low resources, but it has a powerful equalizer where you will notice better quality improvements of your audio files";
fDesc[3] = "restrictions about how many clients can connect to a server. It is free of charge for non-commercial purposes. The Server browser allows you to search for public servers. Little suggestion to make: private text message get lost in the other diagnostic messages.";
fDesc[4] = "in Europe Be a Legend mode, which manage a single player to take him from small teams and benches to the maximum level. The graphics and atmosphere of the stadium was updated and enhanced to complement the experience of PES.";
fDesc[5] = "period. The game starts with a team of US scientists who are sent to an island in the south of China to investigate a weird phenomenon but face a blockade by the North Korean government. Needless to say, that is one critical situation.";
fDesc[6] = "your aim. To begin with, you can create your own soldiers and military units, choosing your soldiers from the several force task characters that were inspired by the real forces from all over the world, such as SAS, Delta Force, or KFS.";
fDesc[7] = "free demo for evaluation from the developer's website. Depending on our computer capacity we can choose between two downloadable demo versions, the small one or vanilla version, featuring the English & Scottish Leagues and the bigger version, which includes up to 12 Leagues.";
fDesc[8] = "Games, Free Games and Free Addicting Games at Factorygames\"";
fDesc[9] = "changes is the ability to turn into a werewolf during game-play. The game is fun itself, but it is plagued by a lot of technical issues.";
fDesc[10] = "a team of worms and to fight against the other team. 3D graphics. Good sounds. Really fun. You can compete agains the pc or other player.";
fDesc[11] = ", this game provides all the fun as the previous Team Fortress games. However with new game modes, a background story and different graphics the game is better than ever.";
fDesc[12] = "controlling even the smallest detail. This game is for true fans and it is very rewarding, but some gamers may find all its options overwhelming.";
fDesc[13] = "replays as .AVI files. You can play using your keyboard or joystick. The program has a database of 40 soccer leagues worldwide. You can play with any team from any country.";
fDesc[14] = "flag, command control, or escort something for example. In the game, you can play for one of the nine different classes, with their pros and cons. These classes as a whole have skills that will help the team in one way or another.";
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 = '...';
}
}