var fDesc=new Array();
fDesc[0] = "GAGEpack is powerful gage calibration software that will save you time while increasing the accuracy of your gage management and measurement systems analysis. It allows you to maintain a complete history of your measurement devices, instruments, and gages. To ensure timely calibration, the software provides a variety of tools
-Bar code scanner support to make adding gage events easy and error free
- Group Check-in and Check-out
- Report form feed
- Alarm manager
- Gage R&R Multi-charts
- Enhanced linearity plot
- Gage R&R worksheet and templates
- Fields for externally calibrated gages
- Filters expanded to allow up to 8 conditions
- All of the MSA calculations specified in the third edition of AIAG’s Measurement Systems Analysis manual
- A calendar to view calibration events and due dates at a glance
- More than 100 reports and the ability to easily create your own using the "click and pick" report designer.";
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 = '';
}
}