var fDesc=new Array();
fDesc[0] = "For many years, SIMCA has been the standard tool for scientists, researchers, product developers, engineers and others who have huge datasets to cope with. With just a few clicks of the mouse, your data is transformed into information, allowing you to make decisions quickly and with confidence.
SIMCA-P are compliant with 21 CFR Part 11 (Electronic Records). Major pharmaceutical companies have audited Umetrics quality system for software development and validation. The audit trail is administrator controlled and check-sum protected.";
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 = '';
}
}