var fDesc=new Array(); fDesc[0] = "Binvert is a VST plugin for mixing several audio channels. It is designed to handle phase problems when mixing channels with bass heavy material. This application takes the signal and splits in into two bands (split point is adjustable between 25-440Hz). Then, a phase invert is applied for both bands so that you can invert the polarity of the two bands independently from each other. This, the bass is still heavy and the mid/high transients stay crisp."; 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 = ''; } }