var fDesc=new Array();
fDesc[1] = "and other sea creatures swimming very slowly above a colorful coral reef. At the same time, enjoy the realistic aquarium sounds including bubbles!";
fDesc[2] = "watching a magnificent fireplace so realistic that we are sure your mind will go to strange and mysterious places. The flames of the logs dance all around like mystical spirits. The whole room is lightened and filled with romantic feelings.";
fDesc[3] = "soon as you watch the first few seconds of it in action. You will be able to see the bottom of the ocean, at some shallow place where you can see the rays of the sun piercing through the water, creating some awesome effects.";
fDesc[4] = "screensaver will take on a trip to the bottom of the ocean. You will be able to watch many different kinds of sea creatures. Fish, octopus, crabs, manta rays and even a mermaid or two.";
fDesc[5] = "own screensavers. By using this program, you will be able to add any picture to the program's main window and then play with it until you have the screensaver you want.";
fDesc[6] = "The screensaver shows a sequence of 3 animated scenes of stunning landscapes, with waterfalls as the main attraction. It works with minimal system requirements, and on all Windows operating systems, including Vista.";
fDesc[7] = "It lets you create animated or slide show screensavers, commercial shareware screen savers that limit its features and provide your customers with a registration code to unlock it's full version, and more.";
fDesc[8] = "relaxing landscape. The screensaver shows the beauty and quiet of a waterfall, surrounded by an idyllic landscape, where we can listen to the sounds of nature. It also includes a small analogic clock.";
fDesc[9] = "products of the product line devoted to the Amazing 3D Aquarium theme. Do you enjoy your desktop having beautiful and ...";
fDesc[10] = ", below the water surface, you will see the ancient ruins of the legendary Atlantis that is now populated by thousands of sea creatures.";
fDesc[11] = "screensaver? Just have a look at Animated Desktop Wallpaper \"Enchanted Forest\". In the amazing, fabulous forest among the lofty trees live ...";
fDesc[12] = "beauty of the marine life directly from your computer. 3D Funny Fish Screensaver can be downloaded from the developer's website and tried out for fifteen days.";
fDesc[13] = "the 3D Aquarium Animated Screensavers on the EleFun Desktops Web Site, along with other versions of reef screensavers. As its name correctly indicates, this screensaver is about a white reef around which beautiful fishes swim decorating your desktop.";
fDesc[14] = "The screensaver spreads a warm and relaxing effect with its animated images of the most beautiful living creatures you find on a sunny day in a nearby meadow.";
fDesc[15] = "indicates, this screensaver is about a big coral where beautiful and colorful fishes swim around decorating your desktop. The screensaver includes a clock in case you want to know the time without leaving the beautiful animation.";
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 = '...';
}
}