var fDesc=new Array();
fDesc[1] = "improvements that make the game even more addictive. Players have the option of choosing to play the single player campaigns, multiplayer, or random maps.";
fDesc[2] = "mode, i.e the same history and strategy in real time. The big difference that shows the wisdom of the people of Microsoft and Ensemble study is that it adds 5 new civilizations and substantially improves the artificial intelligence.";
fDesc[3] = "the first chapter of the saga. In it, a few lucky survivors flee from a volcanic eruption. After some days in the sea, they found an empty and isolated island. You will have to care for a tribe of little people, teaching them the basics of survival, attending their food and housing needs.";
fDesc[4] = "Teach them survival skill as building, fishing, exploration, research and healing other people. Guide them and build your village solving 16 puzzle of different difficulty levels.";
fDesc[5] = "Arts. The main feature of Black & White 2 is that you can be a god. You start on an island where your hand is the mouse pointer and you must leave the island dragging yourself by clicking with the mouse.";
fDesc[6] = "tower that will display the actual time. The clocks on the tower show you he correct time and can be set to strike every 15, 30, 45, or 60 minutes, or you can turn the sound off completely.";
fDesc[7] = "explore with the help of maps and teach the children how to perform different tasks while you buy different technologies in order to help them.";
fDesc[8] = "locked the villagers up in mirrors. Help Iris to set her family and her village free. Find all differences in all the mirrors, before it's too late! But be careful! Rain, fog and poor light will hinder you.";
fDesc[9] = "punished you to work at the Yummy Drink Factory and serve delicious drinks to thirsty villagers as you work your way to freedom. You can unlock tasty new recipes and decorate your shop to keep your patrons happy to earn enough to earn your liberty.";
fDesc[10] = "help them is to build roads between the different towns so as they can help each other. After the available turns are over barbarian will attack from the marker to the nearest city. Before this we must move all the available troops to that city.";
fDesc[11] = "you on a magic adventure with a mission: lift an evil spell, fight wicked mages and save a kingdom from their threatens. The game has really nice graphics, well accompanied by suspense music.";
fDesc[12] = "enslave defenceless villagers. Poor king Uterus unable to fight the evil had to flee to the exile. Help him!";
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 = '...';
}
}