var fDesc=new Array();
fDesc[1] = "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[2] = "new career and travel from city to city to earn the money you need to expand the railroads in this fantastic word adventure.";
fDesc[4] = "the most famous cities in the world. The game is beautiful and also sounds very good. However, it poses no challenge to gamers.";
fDesc[5] = "which movies to show. For those who have played the previous version of the game, the interface will look familiar. It’s a bit restyled though. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[6] = "you have to run your loads from coast to coast. Your goal is to build a fleet, deliver the goods to make money, dominate the roads and eliminate the competition.";
fDesc[7] = "own prison. You can create the prison you want, selecting from seven of the toughest prison styles in the USA. You can build fences and micromanage towers, watch the inmates through the different cameras, and even unleash the dogs in case things get ugly.";
fDesc[8] = "ground up. It also presents you a series of objectives for your park, to keep you focused. The Platinum pack includes the Soaked! and Wild! expansion packs, which makes it the best choice to buy.";
fDesc[9] = "from 3 European cities: London, Paris or Berlin. Playing in the Scenario Mode you will need to face a series of different challenges. In the Box mode, you´ll just have to build your mall.";
fDesc[10] = "a fortune!";
fDesc[11] = "sell. Then we go to a neighbourhood to sell them. We must try to remember what are the most demanded ice creams to be sure to get some of those for the next day. We can also spend some money on promotion so as to get more customers.";
fDesc[12] = ", you will have to buy upgrades, set prices, manage your snack bar, hype your Cinema, train your staff, and much more. Cinema Tycoon has three different game modes: Mogul, Megaplex Star and Cinema Czar.";
fDesc[14] = "The game features cool graphics with a nice music, and includes plenty of options and upgrades to spread your lemonade business all over New York or even have a monopoly of this branch in the city.";
fDesc[15] = "will have to create your prison from its very base to the rooftops. So, you will be able to build all the constructions needed handle a prison: you will build guard towers, hospitals and so on.";
fDesc[16] = "Deep Sea Tycoon is to build and maintain an entire underwater city. As always, your will be the one who makes the game's rules, but depending on your decisions, your underseas world can prosper or collapse.";
fDesc[17] = "board game, but uses planets and starports as locations on the board. If you don't like to play in space, you can change its skin";
fDesc[18] = "important decisions such as employee positions, store upgrades, and menu items. You have to everything: from choosing the shop name, logo, city, etc. At first, you can only sell regular coffee, and then when you make more money you can add other types of coffee.";
fDesc[19] = "cent! Includes stock options trading, news events, company earnings reports, and variable levels of difficulty.";
fDesc[20] = "animals and plants in an open space. You have to consider the needs of each animal and how they interact with others and with their environment. A truly innovative and exceptional strategy game.";
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 = '...';
}
}