var fDesc=new Array(); fDesc[0] = "Converts joystick X and Y (and Z if you have it) movement into any of the MIDI continuous controllers, and you can define the fire buttons to be MIDI pedals, or trigger notes, or activate a few other functions. Axis range and polarity can be specified, and "arpeggiation" series of pitch/velocity pairs may be set up for use with note triggering. Good for people like myself who don't have a fancy keyboard plastered with neo-faux-analogue twisty knobs and sliders."; 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 = ''; } }