var fDesc=new Array(); fDesc[0] = "Channel Vocoder is a traditional software channel Vocoder, with a total of 32 channels. A vocoder works by taking a modulator signal, usually a human voice, and a voice is singing the notes of the carrier. This usually creates a quite interesting, synthetic effect that is often used to create robot voices for computer games and singing instruments for modern Dance songs. However a channel vocoder has a million other uses as well... The only limit is your imagination and the amount of time that you are willing to spend perfecting your carrier and modulator files."; 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 = ''; } }