var fDesc=new Array();
fDesc[0] = "Blaze® Software offers a variety of pre-formatted reports that provide you with management ready documents - from simple to highly detailed.
The most popular Formatted Reports include (partial list)*:
-General Information report: overall data Compare multiple dose, projected dose and TWA with different exchange rates, thresholds, etc
-Summary report: overall exposure data with graph of time history – Compliance data and a graph of the levels throughout the day – all one on page!
-Modified Summary report: As above, w/ modifications to sections of data – remove non-work related exposure, show proposed engineering controls, effect of de-rated NRR’s, etc.
-Detailed Event Report: Show only those times when the noise levels have exceeded a point of interest; like Leq (Lavg) >90dB, Lmax > 115dB, Lpk > 140 dB (all user selectable)";
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 = '';
}
}