var fDesc=new Array(); fDesc[0] = "Karaoke-to-Text-with-Chords is a musical program, which retrieves text of songs from karaoke files and determines chords for them.

The program facilitates (and sometimes automates) extraction of texts of songs from karaoke files, and determining chords for them. The program processes not only karaoke (.kar) files, but also ordinary MIDI files (.mid). In the second case you get only chords, without text (with rare exception*)."; 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 = ''; } }