var fDesc=new Array();
fDesc[1] = "from the fifteenth century to the French Revolution. Plot: this game has its beginning in 1453, the year in which the Turkish take Constantinople";
fDesc[3] = "the ancient Rome,in the time of the Republic, between the first Punic War and the rise of the Roam Empire. As you may know this was a turbulent time, full of intrigues, alliances, and fights in the battlefield as well as in the Senate.";
fDesc[4] = "scenario, is of course Europe, in late middle age and until the Napoleonic Wars 1819, this is a period full of changes. You will have to run a country in every aspect, economy, diplomacy, commerce and so on. In some cases the best option is to take some time to make a good decision.";
fDesc[6] = "scenario is Europe between 1492 and 1792. As you know. you will have to manage an European nation in all the aspects. You must remember that in this time America was discover so you can participate of that event.";
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 = '...';
}
}