var fDesc=new Array(); fDesc[0] = "The NIOSH Hearing Loss Simulator is a software training and communication tool for promoting hearing loss prevention. It allows a user or trainer to demonstrate the effects of noise exposure on hearing without experiencing an actual noise-induced hearing loss. The program displays a "control panel" for playing sounds while adjusting the simulated effects of noise and aging. A simulated individual's age (in years) can be entered along with the years of exposure to noise (in A-weighted decibels). The effects are shown visually on the frequency band control panel and sound level display screen while the user listens to the audio playback."; 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 = ''; } }