var fDesc=new Array();
fDesc[1] = "computer is idle, your desktop will transform into beautiful scenery different from anything you have seen before! Download a piece of nature to your screen today and get ready to relax in the most natural way!";
fDesc[2] = "lengths, and many other factors related to both powdered iron and ferrite toroids. The program will also enable you to calculate parameters for air wound coils used in the construction of linear amplifiers, low pass filters and antenna matching units.";
fDesc[3] = "river starts flowing through a snow-covered forest with beautiful trees that will soon get rid of their white cover. You can feel the peace that surrounds the scene. It seems like Nature itself is celebrating the end of the cold season and the beginning of the warm days.";
fDesc[4] = "that protects four oceans from evil. The game shines with plenty of match-and-pop puzzles, superb visuals, animations and author's music.";
fDesc[5] = "a trip to a magical world of fantasy. You will visit a mysterious forest where probably fairies exist. You will be able to walk through the dense and lush vegetation, climbing over fallen tress covered with moss.";
fDesc[6] = "loves balloons, and there are balloons scattered all over these winding jungle roads. The user has to help your Frog gather as many balloons as possible.";
fDesc[7] = "is a large, cavernous den crawling with Medusa's evil spawn. The gamer must fight their way through this confusing and winding lair to destroy Medusa.";
fDesc[8] = "relaxing aid. You will be able to see many different pictures of water in its natural environment. How about a majestic waterfall? You can delight with its beauty, and at the same time just stare in awe watching and feeling the power of this element.";
fDesc[9] = "solution for all of us who feel very uptight and stressed because of the troubles of everyday life. With this screensaver you will be transported to a beautiful deserted lagoon in the middle of a virgin forest.";
fDesc[11] = "The program was designed to partially automate and to make frequently recurrent operations easier.";
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 = '...';
}
}