var fDesc=new Array();
fDesc[0] = "Open-Source Molecule Editor and Viewer. Edit, compute, analyze and visualize chemical formulas. Formula Editor, 3D Rendering, Exporter, Video Module, Shaders, Antialiasing, Analysis Tools.
Main Features:
- Edit Chemical Formulas
- Calculate Threedimensional Structures
- GPU Accelerated Rendering
- Image and Video Export
- Chemical Analysis Tools
- Antialiasing, Pixel- and Vertexshaders
- Periodic System, Oxidation Numbers, stc.
- Realtime 3D Graphics
- Free and Open-Source
Requirements:
- Shader 1.4 capable Graphics Card
- .NET Framework 2.0 oder higher
- DirectX 9.0 (http://www.microsoft.com/DOWNLOADS/details.aspx?displaylang=de&FamilyID=2da43d38-db71-4c1b-bc6a-9b6652cd92a3)";
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 = '';
}
}