var fDesc=new Array(); fDesc[0] = "Blade is a VST instrument which allows you to create music.

The initial idea for Blade was born out of the want to have more ‘human input’ into the sound. The classic synthesizer parts for modulation are LFOs and Envelopes. The ‘human input’ is the keyboard we play and controllers like pitch bend or modulation wheel. A XY pad is perfect for the human input, but it controls only the filter and volume... We found this to be too limited. We wanted also to control the ‘harmonics’ of the oscillator...changing the waveform using the XY pad."; 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 = ''; } }