var fDesc=new Array();
fDesc[0] = "This terrific 3D screensaver will help you feel the magic of the Holiday Season. You will find yourself in a quiet winter forest with a few cottages scattered around. Everything is covered with snow and it seems like the nature is waiting for a miracle to happen.
A huge Christmas tree in the middle of this peaceful setting, decorations on the houses and the outstanding background music add to this unique holiday mood.
Santa is definitely paying a visit to this place! How about you?";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}