var fDesc=new Array(); fDesc[0] = "Mandelbrot Explorer is Freeware software, allowing the exploration of the Mandelbrot Set and the Julia Sets. With it, you can magnify selected areas of any of these fractal images – up to a massive magnification of 10 13 (that’s 10,000,000,000,000)! You can colour the resulting pictures in any way you choose, save the images to disk, and more besides."; 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 = ''; } }