var fDesc=new Array();
fDesc[0] = "The HIAC PharmSpec provides compendial tests at the push of a button. It works in conjunction with HIAC's particle counters and samplers as a data acquisition and analysis system. It's a Windows-based application that collects and analyzes data using either procedural or user-specified standards.
Features:
- Network backup and archiving
- Support 21 CFR Part 11 Compliance
- USP, EP, JP or KP compendial tests
- Alarms for invalid configuration, calibration due, bubbles detected, concentration limit exceed, sample probe needs recalibration, sensor blocked and sensor contaminated
- Partial results are recorded for incomplete tests";
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 = '';
}
}