var fDesc=new Array(); fDesc[0] = "LyricToy is a small application to view lyrics for the currently playing song in iTunes. With this app you just start it up and click a button. It then can show the lyrics from Lyricwiki or even Google them for you. LyricToy is very lightweight and easy to use. As of version 1.5 you can now search for lyrics using a hotkey."; 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 = ''; } }