var fDesc=new Array();
fDesc[1] = "you will start relaxing with the soft light provided by lanterns hanging from the branches of the trees. Add some wierd sounds and noises to the scene, and you will be imagining your childhood fears.";
fDesc[2] = "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[3] = "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[4] = "immediately be transported to a beautiful lake somewhere in the mountains. It is a warm night, and you can listen to the sounds of nature. The lake is so calm, with a few gentle ripples, that you can see the reflection of the full moon and the mountains on the surface.";
fDesc[5] = "includes a complete list of titles which represent different missions for Nancy Drew to solve. In Nancy Drew: Ghost Dogs of Moon Lake, Nancy will be trying to solve the mystery of the Ghost Dogs of Moon Lake.";
fDesc[6] = "program is of special interest for astronomers, amateurs, and all those interested in exploring the Earth’s natural satellite. Due to its precision and detail of its data, Virtual Atlas Moon has won the recognition of astronomers and prestigious scientific publications.";
fDesc[7] = "you the opportunity to become a space tourist and go on a tour around the Moon. You will be able to see many of the most familiar places like the famous Sea of Tranquility, amazing lunar landscapes, and even take the tour to the other side of this magnificent orb.";
fDesc[8] = "surface and, if you have a map of the moon, maybe you will locate the famous Sea of Tranquility and other well-known landmarks. Who knows? You might even be able to see the American flag where the astronauts left it many years ago.";
fDesc[9] = "next level. It is packed with options features such as Alarms, Logoff, Shutdown, Automatic Executions and Atomic Time Synchronization.";
fDesc[10] = "at any time: past, present or future. It also has the ability to show the next or previous new moon, full moon or quarters. The program features a very small but practical user interface which shows you the state of the moon in any of the two hemispheres.";
fDesc[11] = "fully customizable and allows users to select the objects they wish to include in the scene: nebulas, stars, sun, clouds, astronomical data, as well as lines of latitude and longitude.";
fDesc[12] = "change the hemisphere from northern to southern in the popup menu. The calendar contains two parts, the first one is the calendar and the second one is the picture of the moon.";
fDesc[13] = "in its current phase and will notify you before the full moon. Write your name and the stars will move around the screen getting closer until they form the letters. StarMessage Screen Saver includes many extras, which you will have to discover yourself, since they are too many to mention here.";
fDesc[14] = "astronaut’s seat and take you directly to our natural satellite: the Moon. Your journey will start as soon as you take off from Earth and start your space voyage to the moon. You will see our satellite approaching until you start flying close to the surface, looking for the base camp.";
fDesc[15] = "The Moon is the second brightest object in the sky after the Sun.";
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 = '...';
}
}