var fDesc=new Array();
fDesc[0] = "The Spartan software is used at hundreds of commercial research sites and at thousands of academic institutions world-wide. For determining molecular structure and calculating chemical properties, there is no better tool.
The recently released iSpartan brings high-quality graphical interface and accurate computational models to the iPad, iPhone and iPod Touch. When combined with the Spartan'16 Parallel Suite, this enables the first fully-functional open-ended molecular modeling environment on today's most popular mobile technology.
Spartan'16 is used both in research and in academic lab environments.";
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 = '';
}
}