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] = "of the pocket watch made by Abraham-Louis Breguet, who has been called the greatest genius of watch making in history. You will feel the urge to reach in the water and grab it yourself to solve the mystery of the never-stopping watch!";
fDesc[3] = "computer is idle, your desktop will transform into beautiful scenery different from anything you have seen before! Download a piece of nature to your screen today and get ready to relax in the most natural way!";
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[6] = "the Charming Waterfalls. Fairy creatures living there invite you to turn your screen into a magic window of ceaseless Joy. Features: Natural scenery Realistic animation Funny animals and birds Amazing scene transitions Flexible screensaver settings Relaxing Music/ability to put your favourite music Turn your screen into a magic window of joy! Make yourself and your children happy!";
fDesc[7] = "sand shores. Download this screensaver including more than 20 colorful fullscreen images absolutely free!";
fDesc[8] = "forget about city life, traffic jams and everything related to your stress. You will embark on a journey to some of the most beautiful places on Earth.";
fDesc[9] = "slideshow consists of more than ten photographs of very good quality showing extraordinary landscapes and scenery with different rock formations, and high mountains from different parts of the world. It is an interesting item for a screensaver collection.";
fDesc[10] = "you on a journey to a special place to spend the Christmas season. You will be able to enjoy this joyous festivity in a picturesque small village, where life is very different than in the city. You will not see traffic jams, or pollution, or crowds rushing on the street.";
fDesc[11] = "real top of the world: The Himalayan Mountains in Nepal. You will be able to see these magnificent and massive monuments of nature, displayed in high quality photographs that will definitely take your breath away.";
fDesc[12] = "this free mountains screensaver!";
fDesc[13] = "greenery on the banks contrasting with the quiet chill of the crystal water. The reflections on its surface have a truly mesmerizing effect.";
fDesc[14] = "at the distance. It is a beautiful view. Now move your eyes lower and discover a clear crystal lake, with the reflection of the mountains on the surface. Or a gigantic rock in the middle of the ocean? All this is brought to you in this screensaver.";
fDesc[15] = "Earth. You wiil see the highest mountains like Everest, Annapurna, Lhotse, Nuptse from Nepal, Fuji from Japan.";
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 = '...';
}
}