var fDesc=new Array();
fDesc[0] = "QC-CALC SPC is a complete SPC package that analyzes the data collected by QC-CALC Real-Time. Use QC-CALC SPC’s charts and reports to constantly monitor your process and keep it in control.
QC-CALC SPC offers a wide variety of charts and functions to aid your analysis and give you the power to make on-the-spot decisions. In seconds, QC-CALC SPC gives you a precise picture of how your production line is performing with easy-to-use menus.
Group data from multiple sources, filter it, monitor the shop floor, and run charts with a couple clicks.";
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 = '';
}
}