var fDesc=new Array();
fDesc[1] = "trips and preparing holidays for the Sims. The expansion offers three different destinies in which the Sims can spend some days far away from their houses of their work, on holidays";
fDesc[2] = "power and raise Atlantis, the submerged continent. This game is a great challenge of speed and logic. Graphics and moves of this game are well done and the game is very entertaining.";
fDesc[4] = "travelling? Now you can be part of the first voyage of those brave seamen with the Voyage of Columbus 3D Screensaver! Get aboard one of Columbus' ships: the Santa Maria, the Pinta and the Nina - and recreate the making of American history!";
fDesc[5] = "catch the colored energy balls, but be careful to spin the ring that surrounds your ship so you will have free space to grow your score and for the next ball; if you get 3 balls in order they will disappear and will add you energy.";
fDesc[6] = "you include locked balls in your combos, you will unlock them. You will also be able to collect balls of the same color to form crystals, that will give you special bonuses.";
fDesc[7] = "against enemy ships and evade many obstacles. This is a free game full of action and many visual effects that will make you spend good and fun moments in front of your PC.";
fDesc[8] = "Poker Pop you will be playing your way around the globe. You’ll be at fifty cities in five different countries, collecting postcards and souvenirs along the way. Have a good trip!";
fDesc[9] = "with your paddle to blast off all the blocks on the level and proceed through 6 different epochs from Antiquity to Wild West.";
fDesc[10] = "competition in an Underwater Kingdom. To do that, the player needs to solve different puzzles to provide the mermaid with all the things she needs for her sea garden.";
fDesc[11] = "space. It is very customizable and even allows users to include their own music: a playlist or a single file. The images look real and change all the time.";
fDesc[12] = "boundless ocean. Captivating music together with a truly colorful setting will make your trip unforgettable.";
fDesc[13] = "beautiful sailboat, with someone of your preference, such as your loved one or a special friend? Can you visualize all the adventures you will have to tell your other friends and family?";
fDesc[14] = "Explore more than 10.000 real extrasolar objects, including: Dynamic representation of stars : Main types and variable stars (pulse, eruptive, rotatory, binary and cataclysmic). Full Solar System plus more than 120 known extrasolar worlds. All extrasolar planets are different, based on the scientific data available for them, with appearance changes and atmospheric effects. More than 250 binary star systems, including systems with mass-transfer stars. More than 1000 orbits represented on the whole. Most famous nebulae and star clusters. Six galaxies including Magellanic Clouds. More features, like Saggitarius A*, a black hole at the center of our galaxy. Friendly camera control with mouse, travel with a single click. The object selector will help you to visit the most interesting systems. The system gallery allows to easily compare all celestial bodies within a star system. Reduce the...";
fDesc[15] = "progress, route planning with unlimited number of waypoints, average weather enroute, and position reporting";
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 = '...';
}
}