var fDesc=new Array();
fDesc[0] = "AnStat is an ANSI/ASQ and MIL-STD-105E standards sampling plans software program that takes the tedium and irritation out of extrapolating a sampling plan on Sampling Plan Charts, and eliminates the need for pricey slide rules that can break or become lost.
Main features:
- Perform single, double, and multiple inspection plans, with normal (standard), reduced (loosened), or strict (tightened) inspection levels.
- Store and print log reports for inspections, and store profiles for frequently inspected items.
- Easily calculates sample numbers based on lot size.";
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 = '';
}
}