var fDesc=new Array();
fDesc[1] = "the look and the sense of humor of the movie.This game follows the story of the movies (Dead Man´s chest and At world´s end)";
fDesc[3] = "all kind of objects and clues. Follow Black Jack Armstrong´s steps in order to discover the truth and arrest the gang that murdered your parent.";
fDesc[4] = "to associate the labels of the Windows Live Photo Gallery to the profiles of our friends in Facebook, and keep the tags that attach to your photos through the recognition of faces of Photo Gallery.";
fDesc[5] = ", Dr. Adams calls her with some very important news about a recent discovery. This amazing discovery is related with the Gates of Good and Evils, and you’ll have to go on incredible and diverse adventures in order to find the keys to the gates.";
fDesc[7] = "its Facebook version and has been developed by the same author. You can utilize it from within the Windows Live Photo Gallery or from Windows Live Movie Maker.";
fDesc[8] = "leaves it will begin to grow. After a while, the flowers on the tree will bloom and then fruit will begin to grow. By picking fruit you earn money. You need to collect enough fruits to meet your goal before time is up.";
fDesc[10] = "eMule corrupted files, thus allowing the clients to finalize the downloading process; or just renaming the files as if they were complete.";
fDesc[11] = "Samuel Gordon, the major character,who receives the tragic news of the death of his grandfather, William Gordon, who had lived lives for many years in Black Mirror.";
fDesc[13] = "human history, such as the development of the Roman Empire, the political division of Europe in the Middle Age, and so on.";
fDesc[15] = "because you have a limited number of arrows and your son has a limited amount of blood.";
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 = '...';
}
}