var fDesc=new Array();
fDesc[1] = "expansion for Fable which presents all the content found in the original with the addition of such new features as monsters, weapons, alignment based spells, items, armour, towns, buildings, etc..";
fDesc[2] = "houses which you rent and collect the money every month, and you also own some empty lots on which you can construct new houses. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[3] = ", mercenaries, towns, forests, seasons, the game has a great amount of content. If you can get around a few bugs at first, this is a game you will enjoy.";
fDesc[4] = "You choose the nation, the leader and take on board. After landing on the shore, you found the colony. You need to discover new lands, found new towns, defeat enemies, pay gold to your king or fight against him for independence.";
fDesc[5] = "Transport Tycoon Deluxe or OpenTTD places you as a transport company owner and the target of the game is to be the most successful transportation company. OpenTTD works on Mac OS X, Linux, UNIX, BeOS, OS/2, and Windows platforms.";
fDesc[6] = "ready for the contest called Town of the year. The game is the second release of the sequel and includes great improvements and amazing new features.";
fDesc[7] = ", national and local weather forecast for cities worldwide, recovering the information through the Internet from a worldwide weather forecast database that holds data for more than 210 countries and 27000 towns.";
fDesc[8] = "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[9] = "his Majesty or as a feared pirate. Your riches will expand through successful piracy, theft of ships, plundering of towns or completion of missions from the town governments.";
fDesc[10] = "manager. Build ecological houses, factories, businesses and parks to clean up the city. Upgrade each building to earn more money for rents.";
fDesc[11] = "and can be adequate for any kind of presentation, from travel presentations to professional presentations. The installation process is very easy to perform and no additional libraries are needed. MapCreator works on Windows Vista/XP/2000 platforms.";
fDesc[12] = "stunning 3D. No other software makes it as easy to create your own highly detailed tracks, stations, tunnels, towns, roads, level crossings and scenery. Ideal for railway enthusiasts of all ages, the only limit is your imagination.";
fDesc[13] = "the Flight Simulator. This add-on product tries to correct all the missing cities and towns and the pervasive desertification of the landscape.";
fDesc[14] = ", joining people and towns. To build the infrastructure you must solve geographical obstacles like trees, hills, mountains. You have to build the roads, stations, among others in a great variety of scenarios to complete the game.";
fDesc[15] = "puzzles and quests, and an epic 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 = '...';
}
}