var fDesc=new Array();
fDesc[1] = "more features like effects and custom filters that give website developers more functionality in showing better graphics. It is a must on every PC, as many sites rely on this plug-in for showing videos";
fDesc[2] = "feeds. Instead of having just a blank screen or just one picture as a screen saver, with Google Photos Screensaver you can have many pictures as a slide show that changes every few seconds and acts as a screen saver after a time interval set by you on your computer.";
fDesc[3] = "and other sea creatures swimming very slowly above a colorful coral reef. At the same time, enjoy the realistic aquarium sounds including bubbles!";
fDesc[4] = "you on a diving trip to the colorful coral reef where you will be able to see different kinds of corals, sponges and more. You can watch the rays of the sun filtering through the water, making you feel like you were really underwater.";
fDesc[5] = "watch different species of fish swimming in a salt or fresh water aquarium with the marvelous background and to listen to the calming sounds of waves and bubbles.";
fDesc[6] = "Windows XP or Vista, it is not Mac compatible. When you install the program, you can run it going to Start-Programs-Crackle Screensaver. You can then configure the program choosing \"Configure Crackle Screensaver\" or run the program by choosing \"Launch Crackle Screensaver\".";
fDesc[7] = "is a beautiful one with the classic green colors. If you prefer a digital clock, it will display the well-known 7-segment characters. And still more. If you like the digital number format but think that the clock view is not what you want, you can opt for a digital text display.";
fDesc[8] = "your childhood's stories. Pure water springs give birth to the Charming Waterfalls. The sound of water splashing could be heard in the background while you could see the water falling.";
fDesc[9] = "you aboard a wooden ship in the middle of a fierce storm at sea. You will feel how the ship rocks and moves with the waves and the wind. In the distance, a threatening funnel cloud moves towards you, surrounded by awesome but dangerous lightnings.";
fDesc[10] = "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[11] = "abyss and enjoy the enchanting underwater scenes complemented by extremely realistic sounds of deep sea life in a full 3D environment with high-quality animations.";
fDesc[12] = "show you all the well-known beauties of autumn. That wonderful season of the year when nature is getting ready to relax and wait during the cold winter months. In this season, you will see nature changing colors right in front of your eyes.";
fDesc[13] = "windows and smoking chimneys. Twilight approaches, snowfall becomes heavier, and snow accumulates on the ground, on roofs and trees, making the picture even more realistic.";
fDesc[14] = "you to the sacred places of the Muslims. Probably you have heard of Mecca and the Kabbah, the place where you are supposed to go at least once in your life if you are a Muslim";
fDesc[15] = "fill your senses with beauty. It's not fantasy, it's not nature. This screensaver is just what its name says: a digital clock.";
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 = '...';
}
}