var fDesc=new Array(); fDesc[0] = "MSPlotter (Mandelbrot Set Plotter) helps you create fractal images using the Mandelbrot Set and the Julia Set. Just enter values for Center X, Center Y, Range, and Power of Equation; press the "Plot" button to begin the process of rendering your image, which may be saved in
.bmp format. Options let you select image and window colors, specify detail value, and more. MSPlotter can produce some nice-looking fractals while giving you total control of the process. Fractal AVI movies can also be created."; 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 = ''; } }