var fDesc=new Array(); fDesc[0] = "MXL Studio Control is a valuable tool for making audio adjustments and experimenting with sound. The program includes a custom GUI that controls the analog functions within the microphone. This feature allows you to fine tune adjustments such as phase, roll-off, noise gate and more. The Leveler automatically adjusts the microphone input gain to limit dynamic range and to prevent clipping, and the Noise Gate automatically mutes the microphone input when the signal goes below the set threshold."; 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 = ''; } }