var fDesc=new Array();
fDesc[0] = "Molekel is an open-source multi-platform molecular visualization program.
Main features:
- Multiplatform: Mac OS X, Windows, Linux
- Different methods to speed-up rendering of molecules with support for billboards and view-dependent level of detail techniques
- Programmable shaders; standard shaders to enhance rendering quality, outline contours and perform sketch-like renderings are provided
-Visualization of residues (ribbon or schematic)
-Complete control over the generation of molecular surfaces (bounding box and resolution)
- Animation of molecular surfaces
- Animation of vibrational modes
- Export high resolution images for 300 DPI printing
- Export to PostScript and PDF
- Export animation
- Plane widget to visualize a scalar field: the plane can be freely moved in 3d space and the points on the plane surface will be colored according to the value of the scalar field: a cursor can be moved on the plane surface to show the exact value of the field at a specific point in space.
- Fully Doxygen-commented source code.";
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 = '';
}
}