var fDesc=new Array();
fDesc[0] = "The handy tool that allows you convert MIDI (MID, MIDI), RIFF MIDI (RMI, RMID) and KARAOKE (KAR) files into popular audio formats (WAV, MP3, WMA, Ogg-Vorbis, FLAC, Musepack, WavPack, Monkey's Audio, True Audio) with various bitrates and sound quality.
Direct converting using SoundFonts lets you to get high quality output files. The built-in player lets you to pre-listen the MIDI files before conversion. You can also edit ID3 tags for all file types using the integrated tag editing tool.";
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 = '';
}
}