var fDesc=new Array(); fDesc[0] = "Saturn and its sister program, Titan, are two programs for generating fractal images. Saturn is used for exploring fractals and Titan is used for expanding images saved from Saturn. Saturn produces a picture, typically 750 by 500 pixels, and allow the user to select areas to zoom in for more detail. Titan can generate a greatly enlarged image, typically 12000 by 8000 pixels. The maximum size that can be produced is around 700 Megapixels."; 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 = ''; } }