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] = ", although its development is daring: you have to create a creature, highly envolved to be the dominant species on the planet and, finally, explore other worlds and dominate them.";
fDesc[3] = "standard for the future of RTS gaming once more, C&C 3 takes you back to where it all began—the Tiberium Universe. Published by Electronic Arts Inc.";
fDesc[4] = "outside a space shuttle window and marvel with the magnificent views of the Earth. You will feel just as an astronaut on a space mission flying around Earth and enjoying breathtaking views of everything that happens below.";
fDesc[5] = "Sony PlayStation 3. The game mixes action on foot and mecha (also known as meka or mechs: pilot-controlled walking vehicles) the main character is played by Korean actor Lee Byung-Hun.";
fDesc[6] = "just the same title a year ago, but with a series of expansions and is shipped at a reduced price, so it's a good opportunity for those who are lost in time.";
fDesc[7] = "selected. With SimSolar you’ll be able to tilt and rotate the entire system to view from any desired vantage point. Set the system in motion and watch the planets move around their orbits at any speed you select.";
fDesc[8] = "Beat the time pulling out all the pair of tiles. Remember you can only put out identical tiles by pairs. Enjoy and excercise your mind.";
fDesc[9] = "by various monsters. It is necessary to stay alive to pass the level.";
fDesc[10] = "computer rendition of planet Earth, and space views of the Moon, using the state-of-the-art technologies to produce realistic, high-resolution images.";
fDesc[11] = "is that once you finish the game, there is no additional value in it besides the multiplayer options. Fortunately capcom listened us and re-released a more challenging and content rich version, called Lost Planet Colonies Edition.";
fDesc[12] = "weather forecasts, explore foreign countries, zoom and rotate the globe. Watch planet Earth the way only astronauts do!";
fDesc[13] = "bigger entities than you and persecute smaller things. You have to eat them and grow big enough to eat the others.";
fDesc[14] = "magnificence. Watch the surface of the planet as it moves slowly next to your spaceship. In the background, you will be able to see thousands of stars and other stellar bodies moving and twinkling.";
fDesc[15] = "it shows the three dimensional view of the most talked after planet after the Eartharth, The red planet Mars. Apart from giving a splendid view of the red planet Mars in all the dimensions automatically, it also allows the user interaction.";
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 = '...';
}
}