var fDesc=new Array();
fDesc[1] = "thrilled with the views you are about to see. You will visit a beautiful small western town located somewhere in the West. Delight yourself watching the train station and the mining facilities of that time.";
fDesc[2] = "place in the Wild West. This second part will cover many different scenarios throughout the 14 stages of the game, driving up to a total of 6 different characters with various skills each. You are going to live John Cooper´s adventures as well.";
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] = "this category, this game is pretty different from others. The game is organized into chapters, in each chapter you’ll need to solve a case in The Vanishing Files to uncover the story.";
fDesc[5] = "gold is discovered and a fever is triggered. Once again you will be representing one of three possible pioneers of the region who have to build their settlements while defending it from bandits.";
fDesc[6] = "game the three characters have to rebuild it. Starting from scratch, they’ll have to take care of the first citizens and build up the infrastructure needed to survive, such as houses, wells, farms and so on.";
fDesc[7] = "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[8] = "execution. This game, apart from being really fun and exciting, is a good chance to build up vocabulary and improve spelling.";
fDesc[9] = "scenarios, over 35 cartoons, and over a hundred news from the town's newspaper. Feel the excitement of the Wild West!";
fDesc[10] = "Caribbean! Serve customers! Improve your Club! This is the game you've been waiting for!";
fDesc[11] = "everyone from Simon Greedwell to Sir Richard Rose.";
fDesc[12] = "horses. Enjoy the adventurous spirit of the Wild West with this truly realistic setting and remarkable western music.";
fDesc[13] = "up the rich tapestry of the American West. But one tale has never been told until now: that of Hero.";
fDesc[14] = "is an all-new variation of the popular and classic hangman game. It has been completely retouched till its details to make it even more irresistible!";
fDesc[15] = "having beautiful screensaver? Just have a look at the Animated Screensaver \"Wild West\"! Illimitable space of the North ...";
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 = '...';
}
}