var fDesc=new Array();
fDesc[1] = "customizable, so you can enable/disable the music and sounds, set their volume, and even create a playlist of music you want to hear when the screensaver is active.";
fDesc[2] = "and sound, clock, and so on. The unregistered version only works during one minute; if you want the full version, you must purchase a license.";
fDesc[3] = "meadows, breathing the freshest air and enjoying all the beauty of nature. This is a place where you will not remember, nor worry about the troubles and stress of everyday life.";
fDesc[4] = "Animated Screensaver \"Three windmills\". This is one of the most beautiful products by EleFun Multimedia....";
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 = '...';
}
}