var fDesc=new Array(); fDesc[0] = "Style Split and Splice is a software program for splitting and splicing Yamaha keyboard Style Files. This program will split Yamaha Style Files in two parts: The MIDI part and the non-MIDI part; and splice it again. The two parts have file extension "mid" (MIDI) and "nmi" (Non-MIDI) respectively."; 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 = ''; } }