var fDesc=new Array();
fDesc[0] = "SPC IV Excel is designed to provide an easy to use and affordable solution for Statistical Process Control. Working as a COM Add-in to Microsoft© Excel, it leverages the power of the world's most popular spreadsheet program with the same statistical algorithms that have exemplified Quality America's SPC-PC family of products for over 20 years.
-Installs an icon on your Excel toolbar, and options on your Tools menu, for quick access.
-Compiled as a COM Add-In, instead of a simple VBA macro, for fast, secure and fully integrated features within Excel.
-Generates charts with only a few mouse clicks using your Excel data.";
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 = '';
}
}