var fDesc=new Array();
fDesc[0] = "Your PerkinElmer thermal analysis instruments and data come to life on the Pyris™ software platform - the benchmark in high-sensitivity thermal analysis. Pyris is the preferred choice in thermal analysis because it is intuitive and user-friendly, and provides a wide-range of standard features and capabilities for maximum flexibility.
Whether in a totally automated research laboratory, an automated QA/QC lab, or a stand-alone instrument, you can be sure that the Pyris software meets your operating requirements.";
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 = '';
}
}