var fDesc=new Array();
fDesc[1] = "The Sims 2 includes plenty of new features that enhance the gameplay even more. This new version features an enhanced neighborhood editor that lets you import custom cities from Maxis' own SimCity 4, if you have it installed.";
fDesc[2] = "her business running. Your task is to make sure she does all her work and provides the farm with money. You will have a place at the market where you can put all your food for sale.";
fDesc[3] = "range of uses. Packet Tracer simulates network equipment such as routers, switches, cables and end-client PCs. This allows students and teachers to learn and assess different network possibilities. Packet Tracer is a must have tool for IT engineers.";
fDesc[4] = "of all ages. This tool has a real time European City feel along with various views for the driver to ensure the 360-degree real experience with all those big trucks.";
fDesc[5] = "or in training mode. Choose between six different players and try playing in all the four different clubs. A billiard game with great graphics and views that you can zoom in or out.";
fDesc[6] = "individually and directly. The game consists of creating Sims characters and building them a life, to satisfy their aspirations, to comply their dreams, etc.";
fDesc[7] = "keeping our animals happy, to achieve that you will need to meet their needs and hire staff to care for animals, besides buying buildings and attractions to meet the needs of your visitors.";
fDesc[8] = "fourth episode in the SimCity series and originally was released on 2003. It has a single expansion pack known as Rush Hour which adds additional features to the game. But the Deluxe Edition contains the original game and Rush Hour combined as a single product.";
fDesc[9] = "interaction between software running in a microcontroller and any analog or digital electronic device connected to it.";
fDesc[10] = "given the task to captain a submarine which is a part of the North-Atlantic fleet. Your orders are to patrol the seas. Every patrol mission will determine the outcome of your whole career.";
fDesc[11] = "free, unlike other games of this genre. Plot: Your mission is to eliminate highly dangerous agents of the KGB who try to sabotage the major capitals of Europe.";
fDesc[12] = "best of the few that were released. Unlike other golf games, this one is a simulation experience, in that it recreates as faithfully as possible all the factors that come to play in shooting that tiny white ball.";
fDesc[13] = "is a fresh incursion into the railway simulation genre and an opportunity for lovers of trains and stations to meet their requirements for entering the cabin of one of these transport vehicles.";
fDesc[14] = "must run a hospital with a little sense of humour. The goal of the game is clear from the first step, you must build and run a hospital, ensuring that all patients can be treated and cured of their illnesses.";
fDesc[15] = "simulation. Model ChemLab consists of a real-time animated interactive simulation engine. It features lab wizard tools which can be used to create lab simulations. The simulation so made can be replayed using the demonstration mode.";
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 = '...';
}
}