var fDesc=new Array();
fDesc[0] = "Gain insight into the potential implications of your molecule's structure by using Discovery Studio Visualization tools to simultaneously view its molecular data from multiple perspectives.
Main features:
-Simultaneous data views (3D graphics, sequences, charts, graphics, data tables)
-Standard file-format support (3D structures, SMILES, sequences, graphics)
-Structure building, editing, and analysis functionality
-Scripting capabilities (for automating molecular manipulation workflows)
-High-quality graphic rendering and visual adjustment functionality
-Access to expert-level modeling and simulation functionality, as well as shared custom protocols";
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 = '';
}
}