var fDesc=new Array(); fDesc[0] = "The program is packed with search features that will speed you through your collection as it gets larger and larger. The home screen allows you to select with one click all titles starting with any letter of the alphabet, and then scroll through them with a slide control. You can click a button to show all DVD’s (or any other group) and scroll through the list one page at a time, or simply type any part of the title or artist in the search box at the top and all items with what you typed in the box will appear in the 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 = ''; } }