var fDesc=new Array();
fDesc[1] = "for ZIP/ARJ/LHA/RAR/UC2/TA R/GZ/CAB/ACE. Command line, full text search also in packed files, button bar,FTP client.";
fDesc[2] = "outer world, you should be careful about possible outcomes of it; some bad guys can use your hard work as their own creation or can misuse images for illegal purpose.";
fDesc[3] = "of UltimateDefrag guarantees maximum system performance not just in the moments after the defragmentation has just finished, but also thereafter.";
fDesc[4] = "users to share their processing power with the SETI@HOME initiative. It used volunteers' computers to analyze recordings of radio transmissions from outer space. However, nowadays, several projects can be added to the client.";
fDesc[5] = "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[6] = "mysterious nebulas and all kinds of space artifacts of unknown origin. Deep Space 3D Screensaver is so realistic and has so much detail that you will surely forget that you are at home or at work!";
fDesc[7] = "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[8] = "computer. There are two teams, one of them with white pieces, the other one with black pieces. White pieces play first. By turns, you must roll the dice pressing the \"Roll\" button. Then you must select the piece to move and the target point.";
fDesc[9] = "platform positioned in the outer space. A gameplay setting contains teleporters.";
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] = ", 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[12] = "weather forecasts, explore foreign countries, zoom and rotate the globe. Watch planet Earth the way only astronauts do!";
fDesc[13] = "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[14] = "the outer space, and gradually change the angle of the camera, while playing music. By entering the configuration menu, you will be able to set up the video, sound and camera options.";
fDesc[15] = "see what an astronaut feels every time he is flying out there. I cannot tell you that the scenes are totally realistic. However they are of a very good quality and with a little imagination you will feel as if you were there.";
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 = '...';
}
}