var fDesc=new Array(); fDesc[0] = "Fractal Orbits is an interactive program for Windows that is optimized to generate high-resolution fractal images. The program was designed to create true-color fractals and videos of 2D and 3D fractal types with random generating methods. Fractal Orbits currently supports the Mandelbrot set, Julia sets, Cloud fractals, quat-trap fractals, Newton's method (including 3D Newton and Halley Quaternions), and Phoenix curves, with numerous coloring variations."; 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 = ''; } }