var fDesc=new Array();
fDesc[1] = "applications called gadgets, those gadgets offers us a quick access to different tools or functions that may be useful on our daily duties. Microsoft included a little list of gadgets with their sidebar, however there are much more available on vistagallery.microsoft .com.";
fDesc[2] = "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[3] = "You are the son of a very-skilled and gifted assassin who has died in the line of \"duty.\" However, you don't know anything the truth about him and you only do when the organization approaches you.";
fDesc[4] = "filled game which one could play for hours and hours without getting bored.Its also a NO AGE LIMIT game so every one from a kid to grand pa can enjoy it.";
fDesc[5] = "be told, it hasn't hit the note yet. The game features the HULK, which should be a synonym for chaos, unrest, explosions, etc. Everyone should be afraid of him, but not these people. The game is way too similar to Spiderman.";
fDesc[6] = "as it seems and exposing the truth is the only hope of restoring freedom. Battle against the forces of conspiracy and master amazing tag-team fighting combos with allied resistance fighters.";
fDesc[7] = "Europe, seeking clues in Da Vinci's notes, revealing hidden meanings, and unraveling the riddles that shelter the truth.";
fDesc[8] = "interesting story. Once you match up the necessary tiles to win the game, you must uncover and match the golden Yin and Yang tiles.";
fDesc[9] = "You assume the role of a female journalist in search of the truth in the bizarre adventure that is Mysteryville Deluxe. You visit different locations and interview the residents.";
fDesc[10] = "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[11] = "from your speakers. Saying the truth it is the only function of this software. It doesn’t include any extra functions or even options section. Each record can be saved in mp3 or wav format at 128 kbps CD quality.";
fDesc[12] = "centuries. Bible-Discovery 2.2 is the software designed to help you to get a little closer to the truth. To understand the complex meaning for the words in the Bible it was necessary that you have a good knowledge of the languages.";
fDesc[13] = "Q'West to find her husband Jack, a fisherman that disappeared after a boating accident in the Pacific Northwest. Since no remains were ever found, she believes he is still alive. So, she will try to uncover the truth of Jack's disappearance.";
fDesc[14] = "attractive and functional interface that lets you read any Bible book or chapter, consult one of the included dictionaries and commentaries, and write your own notes, all in the same, four-panelled window.";
fDesc[15] = "original music in a wide variety of styles. JAMMER turns your PC into a 256 track studio with built-in studio musicians.";
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 = '...';
}
}