var fDesc=new Array(); fDesc[0] = "Microscope Simulator enables a scientist to simulate what a given 3D scene should look like under a fluorescence microscope. 3D scenes can be constructed from primitives or imported files in VTK, OBJ, or PLY format. Once a 3D model has been created, you can provide the point spread function (PSF) for a given fluorescence microscope and view simulated fluorescence images."; 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 = ''; } }