var fDesc=new Array(); fDesc[0] = "Your personal Digital DJ: you add music and then play it, rate it, or browse it, all from the same interface. You can even use the program as an alarm clock: you just load the program, add some songs to the library, and then enter the time you'd like to wake up at in the "Sleep Until" field in the Options."; 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 = ''; } }