var fDesc=new Array();
fDesc[1] = "and will captivate you while you are playing. The game consists in a bunch of words mixed up on the screen that you will have to find to get points.";
fDesc[2] = "Iroquois or the Germans, improving the Home City, and enjoying the first two single-player missions of the continuing tale of the Black family.";
fDesc[3] = "storyline, which makes it really attractive. It is a strategy game which storyline develops in real-time mode. Players have to choose among twelve different civilizations from the Middle Ages , to make them rise and advance towards the conquest of the whole world.";
fDesc[4] = "you can draw using the tools on your left. When you choose a tool, the different types of this tool that are available will appear on your right. You can pick the color that the chosen tool will use at the bottom of the screen.";
fDesc[5] = "You will spend a lot of time playing it because it is an easy and mind free game. The purpose of Chainz 2: Relinked is to rotate links to create matches of three or more or make use of the four-way link to make matches around corners and finally clear the board.";
fDesc[6] = "extremely fun and challenging. There is more to winning than having a better army, I think. You have to keep an eye on many things so that your country is the best and survives each campaign.";
fDesc[7] = "will have to order figures so that you can score points and pass the levels. As you keep on passing levels you will be able to use magic to get better and it will be easier for you.";
fDesc[8] = "The game includes wonderful 3D graphics and great sound effects and music. It includes multiple interesting courses to choose from and an editor that allows you to create your own courses.";
fDesc[9] = "This collection is called The Treasure of The Ages. Doors opened to show the great treasure to the people in the museum. Nobody would believe that The Treasure of The Ages had been stolen!! Now we are told to get the whole treasure back.";
fDesc[10] = "help you to have a relaxing break and spend a good time at a PC screen.";
fDesc[11] = "House (ages 4-7), The City (ages 7-9) and the Regions of The World (ages 9-12). There are two characters, Professor Phileas and his parrot who accompany the children in their learning adventure giving instructions for all the activities.";
fDesc[12] = ", awareness, self confidence and concentration, speed, while playing and having fun. It provides 101 games divided in 3 main groups: There are games for children ages 3 to 6, games for kids ages 6 to 8 and games for kids ages 8 to 12. It runs under Windows 98, ME, and XP operating systems.";
fDesc[13] = "has been designed to teach mathematics to children ages 4 to 6. The program includes over 20 maths concepts and skills, 15 activities and games, several challenging levels, rewards to motivate the children, etc.";
fDesc[14] = "activities in order to improve their mathematical skills. Reader Rabbit, Sam the Lion and Penelope the Parrot need the children's help to explore Pit-Rat Island.";
fDesc[15] = "The game features first-person puzzle exploration game of exceptional depth and quality. It has an original fantasy-based mass-appeal unique storyline.";
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 = '...';
}
}