var fDesc=new Array(); fDesc[0] = "The purpose of this program is to display crystal structures on ordinary computer hardware and operating systems. Four forms of graphics are produced: (1) an openGL window for immediate viewing, (2) the Persistence of Vision Ray Tracer (POV-RAY), (3) the Virtual Reality Modeling Language and (4) a Postscript rendering of the OpenGL window."; 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 = ''; } }