var fDesc=new Array();
fDesc[1] = "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[3] = "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[4] = "the opportunity to watch one of nature’s most magnificent creatures: the dolphin. Dolphins are considered some of the most intelligent animals in the world. And remember that they are not fish, but mammals.";
fDesc[5] = ", Orcas, and several other species. This amazing screen saver shows fabulous images of whales who are believed to be the largest animals to have ever lived";
fDesc[6] = "personally liked most of all is the background music, it is very nice and relaxing. But, unfortunately, there is only one melody that sounds throug all the beach scenes.";
fDesc[7] = "and listen to the gentle ocean waves lapping on the beach.";
fDesc[8] = "and search services. This screensaver is very good looking, and its default installation includes many options that you can customize. It also has a feature to detect your system's parameters to accomplish the optimal configuration.";
fDesc[9] = "SCUBA diving suit and take you on a journey to discover the beauties of the underwater world. You will be transported to a warm ocean with crystal clear water, where you will be able to see and enjoy all the spectacular views of this mysterious world.";
fDesc[10] = "their natural environment. Explore the depths of the warm coastal waters and enjoy the beauty of the underwater world";
fDesc[11] = "screensaver will take you on a journey to the ocean depths to visit two of the most unique inhabitants of the sea. You will be swimming in the clear blue waters, delighting at the view of colorful coral heads and sponges, typical of this place.";
fDesc[12] = "beautiful creatures: dolphins. You’ll be seeing dolphins in several different situations, in single shots and in groups, swimming away in blue crystal waters and in the ocean.";
fDesc[13] = "amazing 3D dolphins and exotic fish. The sunlight shimmers through the water as the dolphins and fish swim gracefully. The scene comes alive with the sounds of the ocean and dolphins. Truly mesmerizing.";
fDesc[14] = "screensaver is the best way you can adore its beauty. This attractive screensaver coming in an even more attractive package is a real pleasure for all those having fascination for dolphins.";
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 = '...';
}
}