var fDesc=new Array();
fDesc[1] = "Christmas tree in the middle of a room. It shows a close-up view of its branches. Every branch is beautifully decorated with stars, angels, bells, and more.";
fDesc[3] = "shows a snowy landscape with an igloo in the center of the scene. You will be able to watch as some little girls come out of the igloo to play in the snow. And you will listen to their giggles and laughter too!";
fDesc[15] = "Just have a look at Animated Screensaver \"New Year\". New Year is a holiday, which happens only once a year. This is the time when ...";
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 = '...';
}
}