var fDesc=new Array();
fDesc[1] = "the galaxy by this. Is a game in which one can lengthen the line-up wherever you want whenever you begin a life of the universe is completely new and very large.";
fDesc[2] = "dimensions. Celestia runs on Windows, Linux, and Mac OS X.";
fDesc[3] = "freelancer Edison Trent, an intergalactic jack-of-all-trades. Your mission: whatever you want. Become a smuggler or a ruthless space thug, a naval hero or a trader. Dodge through asteroid fields while piloting elite spacecraft. The action is endless as you make your way through 48 known star systems. Greed, morality, compassion, anger... whatever motivates you, the dynamic universe will respond. Take the first step. The universe is waiting.";
fDesc[4] = "find mythological gods, supernatural universes and fantastic scenarios. Your duty is to prevent that the evil god Loki takes over the universe.You can choose from four gods of four different cultures: Greek, Aztec, Norse and Egyptian.";
fDesc[5] = "take you on a journey to outer space to visit the planets of our Solar System and more. You will be able to see asteroids, meteors and other space objects with an incredible realism.";
fDesc[6] = "imagine comes to Earth and the war that takes place there. Set in the not too distant future, the story takes you to lead all kinds of units against the forces of the universe, which have been averted against the Earth.";
fDesc[7] = "of its different levels. The game is set in a universe where strange plants live and struggle for supremacy. You should control the seedlings and the asteroids; also there are competing colonies of seedlings that you should destroy in order to win the game.";
fDesc[8] = "focuses on the character that gives its name to these famous film, a small robot that after 700 years cleaning up the planet Earth, finds that he is not alone in the universe.";
fDesc[9] = "Calypso, to which new players arrive. The game features an innovative concept of linking real-life currency with the in-game currency, effectively creating a game with a cash economy. It is an innovative concept and is well done.";
fDesc[10] = "incredible space scenes that capture the mysterious beauty of outer space. Enjoy up close and personal 3D space scenes including 3D planets, comets, asteroids, stars and many other space objects.";
fDesc[11] = "character from different classes, you are able to choose, the pirate, the soldier, the police and the gold digger.Then, you can choose a federation and you will be allow to travel the vast universe.";
fDesc[12] = "universe is dying. In the galaxy appears a big black clod called the Mirk. You will become a member of the Guardians, a race that once was human but now is trying to survive.";
fDesc[13] = "universe, control solar systems, stars, various celestial bodies, black holes, etc. and to explore outer space and celestial bodies, and control their behavior. This software includes our entire solar system, and the closest 100 stars and our local galaxy group.";
fDesc[14] = "this game is that you do not necessarily need to finish the game when the story or plot ends, since at the end of the story the player has only explored a small part of the game's universe and can continue further exploration.";
fDesc[15] = "includes 15 incredible space scenes that show major planes, constellation from other universes, asteroids and meteorites and many other space objects. All this with no ads, no nag screens, no trial versions, no limitations whatsoever.";
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 = '...';
}
}