var fDesc=new Array();
fDesc[1] = "aliens that are threatening the Earth. As you complete missions you get money to buy new and more powerful weapons, and be able to fight toughter aliens each stage.";
fDesc[2] = "made its grand debut on the XBOX 360 when the console was just released. The game introduced certain features that were long missing from the previous games. The most important change from the previous game is the great graphics that this game has.";
fDesc[3] = "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[4] = "Berlin Wall hadn't fallen? Well, we would be living in a quite different world. That is what the game is all about. The Berlin Wall didn't fall and the Soviet army kept on getting more and more powerful.";
fDesc[5] = "fictional in nature. That is to say, there is an alien species and technology is much more advanced that the tech present in Battlefield games. But the gameplay is kind of the same.";
fDesc[6] = "stealthy operations. You play Sam Fisher, an agent who has been known to be a model agent. He is jaded and rough around the edges but he's terribly good at what he does: kill people. This game changes the user's perception of Sam.";
fDesc[7] = "student in a cooking school and your mission will be to complete a series of cooking tasks by following several steps within a given time span.";
fDesc[8] = "YouTube, Google Video, GodTube, MySpace video, Break.com, Teachertube.com and Dailymotion.com. Also, you can easily download videos from adult video servers";
fDesc[9] = "has been ported to the PC. You play a certain secret agent, who is sent to a third world country to set it free. So you roam around in gigantic maps and kill people. The controls are pretty easy to use and understand.";
fDesc[10] = "top-down action games, and this is not the exception. Similar to Alien Shooter, you now must fight Zombies, and it is somehow more gripping than the Alien Shooter games. If you like arcade action games, you'll love this.";
fDesc[11] = "Po who strives to become a kung fu master. The game includes 13 short levels featuring parts from the movie and other scenarios created specially for the game.";
fDesc[12] = "takes place on a massive space colonization nave which is being attacked by an alien force that has annihilated the planet Earth before the beginning of the game.";
fDesc[13] = "different formats. This applications enables you to convert your files so that you can edit them or play them in special media players.";
fDesc[14] = "cell phone as a ringtone. The program lets the user create and manage ringtones for Nokia cell phones, which makes it unnecessary to purchase them. The Mobile Ringtone Studio for Nokia is basically three programs in one.";
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 = '...';
}
}