var fDesc=new Array();
fDesc[0] = "New fantastic screensaver will definitely decorate your desktop and help you to relax after a hard day. This colorful and funny screensaver will be loved both by adults and kids.
Fairy-tale characters like witches, flying in a mortar and a broomstick, gnomes, trolls and other creatures will make adults go back to their childhood, and child will replace a fairy tale. Install this fantastic screensaver on your computer and make a fascinating journey into the magic world. You will enjoy fairy forest with it's well animated inhabitants!";
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 = '';
}
}