var fDesc=new Array();
fDesc[0] = "It is an app which combines audiometry, fitting and verification tools.
Main Features:
- Single point of entry to immitance, audiometry, speech mapping, hearing loss and hearing instrument simulators, probe mic measurements (PMM / REM) and Otoscopy.
- Direct access to measurement data, counseling tools and all compatible products.
- More effective workflow, even if you work through NOAH.
- Short learning curve saves you time and energy.
- Combined and customized reporting.
- Ability to include data from non-Otometrics instruments in your report through NOAH.";
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 = '';
}
}