var fDesc=new Array(); fDesc[0] = "Filterjam is a multi-band resonant filter that produces ringmod-like filtered sounds. This application is avialble in VST, AU, and AAX formats. Filterjam divides the input audio signal into 4 bands and then adds/multiplies according to the selected mode. It can can add brightness or depth to synth sounds, can be harsh or gentle, or can completely mangle acoustic sources."; 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 = ''; } }