var fDesc=new Array(); fDesc[0] = "MIDI Control Center (MCC) is an application that converts the input of various devices (keyboard, mouse, joystick and programmable oscillators) to MIDI-events (e.g. controllers or notes). For every mouse box you can assign MIDI events to the X and Y axis, separately for the left and right mouse button. There are many customizable settings - it also includes a setting morpher that blends all of your options from one setting to another. The program can be run directly without installing."; 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 = ''; } }