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[2] = "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[3] = "animation is really well done and includes a 360ยบ perspective of the place, allowing us to have a great, relaxing view of the scenery and the surrounding mountains."; fDesc[4] = "feeling the cold. You will be able to see one of the most beautiful scenes you can find in Mother Nature: a waterfall."; fDesc[6] = "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 ..."; fDesc[7] = "decorated with holiday lights. Don/t you think that Christmas is an amazing and unique holiday, which cannot be compared to any"; 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 = '...'; } }