var fDesc=new Array(); fDesc[0] = "ListDJ displays the lyrics to the song you are currently listening to on Spotify in a separate window, so that you can sing along with your favorite bands.
You don't have to make up the words to songs anymore; ListDJ works as a plug-in for Spotify, opening a separate window next to the audio streaming application and displaying the lyrics to the songs you listen to."; 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 = ''; } }