var fDesc=new Array(); fDesc[0] = "A beautiful screensaver that shows that math is not only an exact science, it can be beautiful.

Everything on the screen is described by math expressions.

Screensaver includes more than 60 fractals, which will decorate your screen and will amaze your imagination. There are such fractals as: Sierpinski Triangle, Dragon Curve, Koch Curve, Levy C curve, Fern Fractal, Mandelbrot Set, Phoenix Set, Julia Set, Newton Basins etc."; 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 = ''; } }