var fDesc=new Array();
fDesc[0] = "Welcome to the most enchanted world of the Secret Life of Forest!
Tiny discreet glow-worms enlighten mysteries of the Forest before your dazed eyes! Fantastic mushrooms whisper implicit spells for you to be oriented here!
Magic Forest Clock Features
Living glow-worms
Fantastic Forest
Natural atmosphere
Free of charge
Exact Time
Decorate your computer
Enjoy the magic of the Fantastic Forest!";
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 = '';
}
}