var fDesc=new Array();
fDesc[1] = "very realistic graphics that will provide all the different details to make Christmas a time to remember. The images are so realistic that you will be able to even feel the warmth of the flames as they rise in the air.";
fDesc[2] = "Get this new hit from the developers of Christmas Time 3D Screensaver that was downloaded over 100,000 times in a single day!";
fDesc[3] = "small village high on the mountains. Everything around you is covered with snow, and you can almost breathe the tranquility of the place. It seems that nothing is moving at all, maybe just staying warm at home, next to a beautiful fireplace.";
fDesc[4] = "and color. Menu allows to change lights into rays and spirals, set their position and cones. You can play mp3 music";
fDesc[5] = "magical place. You will visit a small pretty village high on a mountain. As you start walking on the streets, you will see, and almost feel, that you are walking on snow. Everything around you is covered with a white blanket that gives a sense of tranquility.";
fDesc[6] = "expectation of a big holiday. Postpone everything for a bit and enjoy the Christmas spirit. Ho-ho-ho!";
fDesc[7] = "camera motions with beautiful snowy scenes, flying Christmas boxes, fire crackers and lovely background music";
fDesc[8] = "screensaver will take you to a forest during a snowstorm. But don't worry. It is not a blizzard. It is just a nice and gentle snowfall with thousands of different shaped snowflakes. You will be able to watch as the pine trees get covered with snow, as well as all the ground around you.";
fDesc[9] = "show the true atmosphere of a white winter.";
fDesc[10] = "atmosphere of a white winter.";
fDesc[11] = "Screensaver will add something new to your collection of Christmas attributes for creating holiday atmosphere.";
fDesc[13] = "winter evenings. A Christmas tree will help you feel the spirit of the coming holiday.";
fDesc[15] = "approaching together with the enchanting pictures!";
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 = '...';
}
}