var fDesc=new Array(); fDesc[0] = "Midi File Creator is based on Midi Synthi Player, but with a few important differences. The main difference is that the output of this program, the .mid file, is more completely compatible with most MIDI players, sequencers, and notation programs. Therefore, Midi File Creator can be used as a standalone program, or in comjunction with other software for purposes of editing, playing, or printing out the notation."; 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 = ''; } }