var fDesc=new Array(); fDesc[0] = "MIDI to WAV Converter is an audio converter designed to convert MIDI files into WAV. The application provides two ways to convert MIDI files to WAV and other popular formats: Soundfont Rendering and Soundcard Recording. The built-in player helps you to get idea how your WAV file will sound after conversion and play .midi with soundfonts. You can customize your WAV files by adjusting frequency, mode, and bitrate, changing tempo, providing basic information with ID3 tags."; 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 = ''; } }