var fDesc=new Array(); fDesc[0] = "The purpose of this script is to integrate MiniLyrics in MediaMonkey.

MiniLyrics is a nice and advanced lyrics player that supports all major lyrics formats, has various options to display timestamped lyrics, and has a huge online lyrics database. It is skinnable and can automatically download lyrics and save them to the tags of mp3 files, or to separate text files.

The MiniLyrics window automaticly resizes if you resize the dockable panel. The script also repositions and resizes the embedded MiniLyrics window every second (1000 ms)."; 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 = ''; } }