var fDesc=new Array();
fDesc[1] = "case comes up and you are ready to get to the end of it. Your mission is to investigate who is the killer of Miss Linnete Doyle, another passenger of the cruiser. Twelve levels will lead you to the truth, gathering clues on each investigation.";
fDesc[2] = "personal details of every member of the family, as his birth date, gender, date of death, email, as well as phisical details, relevant notes and every detail you should need, including photos.";
fDesc[3] = ", 2000, XP and Vista. Its help file is really big due to the amount of information and reports you could do with it, however the most common usage is to troubleshoot stop errors (bluescreens of death)";
fDesc[4] = "universe of Star Wars movies. The game tells the story from the times when the Galactic Republic falls to the destruction of the Death Star (Episode III and Episode IV).";
fDesc[5] = "Africa, Asia, Eastern Europe and Middle East. Players play the role of Thomas Mason, a mercenary whose goal is to strive hard to free the world from terrorism threats.";
fDesc[6] = ", and look for fingerprints, marks,id´s, weapons, footprints, etc.. Discover all the objects that will give you clues in order to solve the crimes and figure out how everything happened.";
fDesc[7] = "users. And unlike Race, Death-Match does allow you to walk and shoot other gamers. This is truly the mod you should add to your GTA:SA.";
fDesc[8] = "developers basically recreated Quake's deathmatch for Half-Life. Everything you remembered from Quake is there. Even the mad fun you get when you played it online.";
fDesc[9] = "of Luke, in the driving seat, to destroy a death star with 30 rebel ships in the Battle of Yavin, which is based on the Star Wars film.";
fDesc[10] = "will play the part of Jennifer Lourdes, a novice FBI agent who is in company of Alan Michaels, an older agent, they are after Ira Einhorn, a former hippie leader who turned into killer and runaway after putting Holly Maddux to death in 1977.";
fDesc[11] = "different games: Half Life 2 and its two expansions, the fascinating and innovative Portal and the funny multiplayer Team Fortress 2. Are you sure you can resist? The best first-person shooter for PC is at The Orange Box. An essential pack .";
fDesc[12] = "Your goal is to fill out your game field with the shapes provided in order to solve and image that will guide you to the game’s answer. There are many levels to solve, but do not worry, you have a map with you that will show you where you are and will help you keep track of your game.";
fDesc[13] = "role of a Russian elite soldier , called Smersh, who is an agent of a department of counter-espionage for the Soviet Union. You work alone in your jobs, you don´t like to work with a partner.";
fDesc[14] = "future where the traditional sports have been replaced by more violent and aggressive entertainments to keep the world's population busy and entertained.";
fDesc[15] = "homeland, by defeating the enemies that attack it by air and ground. You will have to fly your plane, shooting to another planes and bombing tanks and other enemy vehicles.";
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 = '...';
}
}