var fDesc=new Array();
fDesc[1] = "Bomb power-ups to help you clear the grid. Play your discs right and you'll create powerful cascades. This match-3 puzzle delight will have you Sprung!";
fDesc[2] = "will put you in a gorgeous setting. It is a very pretty and peaceful pond surrounded with plants and trees. You can see the first ducks, rabbits and other animals starting to relax after the winter season.";
fDesc[3] = "visible window in a clear windows list. Bring a window to front, make it float or send it back to normal. It's that easy. Just try it and get a n...";
fDesc[4] = "botanical garden on a beautiful Spring day. Admire thousands of blooming tulips and daffodils while hundreds flocking butterflies dance across the screen.";
fDesc[5] = "places you have never seen before. Places where the magic of spring can be noticed instantly. You will be able to see waterfalls, gently flowing streams, and many other scenes depicting this gorgeous season.";
fDesc[6] = "other animals like rabbits and robins are running and flying on this beautiful scene. The enchanting sounds they produce will give you a relaxing and peaceful time.";
fDesc[7] = "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[8] = "James Version. The screensaver is fully customizable and you can use it for reading and learning from the anicent Biblical wisdom while taking a break during your workday.";
fDesc[9] = "blooming on your desktop while farmer Joe mows them over every minute or so.";
fDesc[10] = "screensaver will take you to a place where few people, if any, have been before. You will be able to see a very nice waterfall that forms a gentle stream. Everything around it is green or full of the colors of spring.";
fDesc[11] = "where you can forget about traffic, stress, job and everything that prevents you from relaxing. You will find yourself in the middle of a lush green forest somewhere in the mountains, where nobody will ever disturb your peace.";
fDesc[12] = "will transport you to a lovely garden in what looks like a very antique house. You will see the different flowerbeds with flowers of many colors. The walls of the garden are very pretty with that feeling of “old but wise”. I wonder what they have seen?";
fDesc[13] = "flowers, trees, flying birds and butterflies, some walking animals, swimming ducks and geese, shining stars in the sky. This screensaver changes its scene from night to daytime according to the real time changes.";
fDesc[14] = "this special season of the year. The setting includes detailed designs of flowers and butterflies of all colors, with an animated windmill that spins around quietly.";
fDesc[15] = "start to fall and nature prepares for winter. The animation recreates a rainforest at this special season, with excellent graphics and detailed designs.";
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 = '...';
}
}