var fDesc=new Array(); fDesc[0] = "Gabedit is a free graphical user interface for computational chemistry packages.
Gabedit makes using Computational Chemistry Packages (CCP) simple and straightforward :
- Sketch in molecules using its advanced 3D Structure Builder, or load in molecules from standard files.
- Set up and submit CCP jobs right from the interface, and monitor their progress as they run.
- Examine calculation results graphically via state-of-the-art visualization features: display molecular orbitals and other surfaces, view spectra, animate normal modes, geometry optimizations and reaction paths."; 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 = ''; } }