var fDesc=new Array();
fDesc[0] = "MidiMeow is a small, simple and easy-to-use tool that rips midi files "on the fly". If you are looking for a file that converts raw datas into a mp3/ogg or a wav file, this is not what you need, of course. As the midi files need to be interpreted with midi instruments, keep in mind that the result may change from a sound card to an other.A simple tool that can proove itself to be very useful if you ever need a reliable midi to wav/ogg/mp3 converter.7 out of 10";
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 = '';
}
}