var fDesc=new Array(); fDesc[0] = "Incendia Next is a fractal engine that allows you to design and explore the realm of 3D fractals. The program includes multiple 3D editors for design and process fractals as well as the elements that support them. Also, it can export fractals as meshes, suitable for 3D printing. It features multiple 3D fractal types; large render resolutions; fractal scripting support, for creating new fractal types; texture library and procedural texture generators; color gradient support; and more."; 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 = ''; } }