var fDesc=new Array();
fDesc[0] = "Intuitive and easy to use – in a format that feels familiar to anyone who has used Oticon's Genie software - Genie Medical helps the audiologist to fit patients with confidence. To optimize the fitting outcome and workflow for different user groups, Genie Medical offers dedicated fitting modes and rationales for:
-Conductive / mixed hearing losses
-Single-sided deafness
-Soft band
Features:
-Dedicated fitting modes for people with conductive / mixed hearing loss and single-sided deafness
-10-channel frequency response shaping
-Individual programming of automatic directionality and noise reduction
-Define up to 4 listening programs
-On/Off option for program button and volume control.";
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 = '';
}
}