var fDesc=new Array(); fDesc[0] = "MR Gate is a full featured expander/gate that can be used to gate noise during quiet sections. It’s a very comprehensive gate implementation with adjustable lookahead, variable ratio, attack and decay times, etc. In addition, it has a scrolling time display that shows the level of the input signal and the gate attenuation, very handy for setting up the parameters. Also, it has a monitor feature that lets you hear the gated signal which is kindof cool for listening to the background without the foreground."; 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 = ''; } }