var fDesc=new Array();
fDesc[0] = "Christmas holiday is the most popular children feast throughout the world. Every day before Christmas is very special. Santa was on the Pole for a long time, and now he is flying to your home to share his Christmas gifts and warm up himself for a while near the festive fireplace. It is almost midnight behind the window and the magic of Christmas is at hand. In just a few seconds the miracle will happen. It is time to Ask Santa for your holiest wishes.
This screensavers uses binaural recording is a method of recording sound that uses two microphones, arranged with the intent to create a 3-D stereo sound sensation for the listener of actually being in the room with the performers or instruments.";
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 = '';
}
}