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[2] = "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[3] = "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[4] = "“rat race” where everybody who gets his university degree starts, and then all the adventure begins. By rolling the virtual dices, the player advances and falls into different situations.";
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] = "screensaver's features are configurable, like the 3D rendering capabilities and the sounds. Although it has some minor disadvantages, it is a god screensaver.";
fDesc[7] = "knowledge and thinking areas like literacy,numeracy, concept and idea, in a visual way.We can download on-line and try this program for free for a 30-days period. There is a Quick Tour at the developer's site where we can see the program on work.";
fDesc[8] = "their natural environment. Explore the depths of the warm coastal waters and enjoy the beauty of the underwater world";
fDesc[9] = "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.";
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 = '...';
}
}