var fDesc=new Array();
fDesc[0] = "Want something spectacular to relax for a while? Feel like going out to the forest? Afford youself a little pleasure!
Put this screensaver to your PC and you will find a magic world full of wonderful animals living on the shore of the fairy lake!
Enchanting natural sounds will surround you and fill your world with wonders, happiness and surprises.";
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 = '';
}
}