var fDesc=new Array(); fDesc[0] = "It's another AutoDJ. When turned on it waits till the last track in the "Now Playing" list starts up, then queries your MusicMagic server for a suitable track to queue up next. If none are found it should just add a track you've never heard before. If that fails it should just add any old track not in the "Now Playing" list."; 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 = ''; } }