var fDesc=new Array();
fDesc[1] = "the visual effects aren't very good. The backgrounds are much more brighter and colorful than the tiles. It has a very smooth palying.";
fDesc[2] = ", 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[3] = "later). It is able to play single .MP3 files or playlists (.M3U or .MSC). The program just plays the files. There are no fancy features like visualizations, lyrics or covers.";
fDesc[4] = "with fascinating transition effects and gives you a real effect of the falling water. You can also select from a great variety of scenes against which you wish you see the waterfall.";
fDesc[5] = "very beautiful aquarium with colorful fish swimming there while the plants sway gently back and forth and bubbles rise to the surface! This is the 3D Bungalow Aquarium Screensaver!";
fDesc[6] = "various places to watch the calm serenity of the lake sceneries. View a mountain reflection on a calm lake; a giant lake from the sky; a foggy jung";
fDesc[10] = "respire beauty and calm fascination! Have a look at the houses, towers, churches and squares in the morning and you will see that there is nothing better than a city, which is waking up after a short European night.";
fDesc[13] = "will help you attain sweet serenity! And be sure to be kind and thankful. Because it's Thanksgiving Day!";
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 = '...';
}
}