var fDesc=new Array(); fDesc[0] = "AlbumPlayer is a program that allows you to easily browse your music collection by surfing through the covers. You can select an album by clicking the cover, opening the album booklet and selecting some tracks to play. You can add video clips to the album collections of your artists, play them in full screen, or even on a separate screen if you like, and integrate videos into your playlists."; 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 = ''; } }