var fDesc=new Array();
fDesc[1] = "to enter the new continent unexplored with their richness by exploiting some indigenous to conquer. This version has several bugs and lacks some features present in version 1.1, like some out-of-sync bugs and multiplayer scenarios.";
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] = "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[4] = "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[5] = "civilization, or as the imperialistic British. Players also have the opportunity to try out the new random map Honshu, and the King of the Hill game type.";
fDesc[6] = "depicted in this game is covering a vast area on the earth, i.e. Greece, Egypt and Asia (all ancient civilizations). To begin with the game, you have the opportunity to create your own character.";
fDesc[7] = "Games, Sid Meier's Civilization IV: Beyond the Sword offers the widest array of developments in the history of the Civilization franchise.";
fDesc[8] = "included in this edition with characters from the real world, new civilizations to accompany them, and new features, this game was published by Microsoft Game Studios.";
fDesc[9] = "strategy game. Among other developments, this expansion includes 6 new civilizations, 10 new leaders of civilization, 8 new scenarios and new units and buildings.";
fDesc[11] = "of Age of Empires and The Age of Kings , introduced the revolutionary Age of Mythology. The expansion includes interesting elements to the game: 12 divine powers, 15 units and 10 units mythical human formidable.";
fDesc[12] = "to a powerful civilization by founding cities, working the land, researching science, trading or fighting with other nations. Before being able to play you have to connect to a server with the client, either locally or somewhere on the net.";
fDesc[13] = "for a very short time, an enemy has arrived to change this. In this game your main goal will be to combat alien forces that threaten the galaxy. You will be able to choose which captain you want to be.";
fDesc[14] = "expand, exploit and exterminate. This is known as the four x for the old gamers. As in the previous games of this saga,you will have to start in a small planet with some resources to build your ship and from there explore another planets.";
fDesc[15] = "civilizations, like China, Medieval Europe, Rome and more, while offering you and your family long hours of fun to enjoy at your free time.";
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 = '...';
}
}