var fDesc=new Array();
fDesc[0] = "The fractal screensaver shows mandala from fractal images. The animated art mandala is used as object of concentration and a focus of attention. Symmetric geometrical forms mandala color promote achievement of calmness and a meditative condition. Fractal art images with smooth animation of forms and colors will serve as a good ornament for the screen of a computer, will remove a pressure and weariness. Animated fractal screensaver helps to relaxing and removing stress.";
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 = '';
}
}