var fDesc=new Array(); fDesc[0] = "Explore the wonderful world of Fractals. Fractals are complex, detailed geometric patterns found throughout the natural world. Plants, clouds, coast lines, blood veins and snow flakes are examples of natural fractals. Ultimate Fractal generates fractal designs of amazing detail. They are created using mathematical formulae and are infinite in their ability to be viewed in ever increasing detail. The closer you look the more detail there is."; 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 = ''; } }