var fDesc=new Array();
fDesc[0] = "SPC WorkBench is simple yet powerful software that enables you perform On-Line Statistical Process Control on the shop floor.
Main features:
- Monitor Process Capability with Histograms, Cp, Cpk, Pp and Ppk indices.
- Estimate PPM levels.
- Normal Probability Plot of the data.
- Verify normality of data through the AD test.";
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 = '';
}
}