var fDesc=new Array();
fDesc[1] = "of satellite photographs. There are three versions, the free one for personal users, Google Earth (Enterprise) and Google Earth Pro. Many interesting features: Flight simulator, Sky and Mars, Street Views and 3D Buildings and the fantastic Google Ocean.";
fDesc[2] = ", Islamic, and European civilizations. The Silk Road, was in short, a major cultural and economic trading gateway. Roads connected between ancient Asia and Europe that have disappeared into the forgotten history of glory and adventure.";
fDesc[3] = "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[4] = "the settings and different alternatives for fun are excellent, you will never get bored. Choose your track and car for a single race or a championship and try to break all the speed records.";
fDesc[5] = "of many of the users of the original games. Why, you might ask? Well, the game tried to achieve something new by dumbing down the game; that is, to do without the elements that made it a great game franchise.";
fDesc[6] = "you must haul cargo between 48 U.S.states, Canada and Mexico. Your goal is to make money, dominate the roads and eliminate the competition.";
fDesc[7] = "Arts. This racing game offers a wide variety of cars to be used in racing. The car upgrades include both visual and performance enhancements that make the game rather interesting and worth-playing. The roads to race in Need for Speed Underground are visually interesting and well designed.";
fDesc[8] = "and you must haul cargo across the entire United States. Your goal is to make money, dominate the roads and eliminate the competition.";
fDesc[9] = "modified version of the game is used by the US Marines. There are so many options and features that make this game just great. If you haven't played it yet, you certainly should.";
fDesc[10] = "knowing how to build and manage a classical Roman city. It is not easy at all, especially if you get in mind to meet the needs of your citizens. Build houses, roads and many other buildings.";
fDesc[11] = "through deserts, country roads, rocky mountains and icy winter roads. The game consists of a series of championships. You can choose the type of car you want to drive, and the color it will have. You can select between six types of championship.";
fDesc[12] = "and help you to explore new areas with ease. So, you can maximally use your trip all over the Europe. As compared with the most online cartography sites Autoroute has more personal function for trip planning.";
fDesc[13] = "future where the traditional sports have been replaced by more violent and aggressive entertainments to keep the world's population busy and entertained.";
fDesc[14] = "loves balloons, and there are balloons scattered all over these winding jungle roads. The user has to help your Frog gather as many balloons as possible.";
fDesc[15] = "about a road trip. You’ll be embarking a tour round across the States with your car and caravan, and in every stop you’ll be playing new levels. As you progress in levels you will go unlocking new roads to explore.";
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 = '...';
}
}