var fDesc=new Array();
fDesc[0] = "Platon is a general crystallographic tool implementing a large variety of standard geometrical calculations such as bonds, angles, torsions, planes, rings, inter-molecular contacts (H-Bond analysis), co-ordination etc., either fully automatic or as specified. You can also perform ADDSYM tests. It also comes with utilities for cell transformation (SHELXL input and PDB & CIF output).
It can generate automatic labelled ORTEP-lookalike plots.";
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 = '';
}
}