var fDesc=new Array();
fDesc[1] = "stars, galaxies, nebulae and planets. Its really cool to zoom through the sky, if you are interested in astronomy. This will be a great application for schools, especially when you consider that it is a freeware.";
fDesc[2] = "ship in space to collect its treasure. Each level of this game will challenge you with new adventures and increasing difficulty.";
fDesc[3] = ", and of course asteroids! This FREE screensaver features incredible 3D graphics and marvelous visual effects showing an asteroid belt with thousands of asteroids approaching you at a very high speed!";
fDesc[4] = "to each item. It runs both under Windows and Mac. If you like astronomy, Starry Night provides you with several version to suit your needs.";
fDesc[5] = "itself is really beautiful. Its design is very simple, but at the same time, I don’t know if the combination of colors, or the several effects on the screen, provide a very advanced, maybe futuristic view to it.";
fDesc[6] = "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[10] = "it will only generate beautiful 3D Cosmic images, and the best thing is that you will never see the same image twice. The program sits in the system tray and allows users to customize and control everything from there.";
fDesc[11] = "space where you will be able to see nebulas, stars, planets and more spatial objects. Everything is in continuous movement, as is the whole universe.";
fDesc[12] = "with 3 skill levels. Become Master of the COSMOS. Check out your pilot skills driving multiple saucers through the deep space";
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 = '...';
}
}