var fDesc=new Array(); fDesc[0] = "Media Control is a free plugin designed for the True Launch Bar to allow you to take control of your player. You can play, stop, pause the current track (file), switch the current track, and select files to play. Also this plugin can show information on the track (duration, song title etc)."; 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 = ''; } }