var fDesc=new Array();
fDesc[0] = "CrystalExplorer is a fully-featured molecular crystal visualization tool, available for Mac OS X, Windows and Linux. CrystalExplorer provides a new way of visualizing molecular crystals using the full suite of Hirshfeld surface tools.
CrystalExplorer is a versatile and powerful tool for the analysis of crystal structures and can be used to investigate many areas of solid-state chemistry including:
- Intermolecular interactions
- Polymorphism
- Effects of pressure and temperature on crystal structures
- Single-crystal to Single-crystal reactions
- Analyzing crystal voids
- Structure-property relationships";
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 = '';
}
}