var fDesc=new Array(); fDesc[0] = "VC Video Library can be used to catalog your private video collection. If you lend your videos to friends, this program can record and catalogue information about the friend and the date he/she borrowed it. It lets you find a film by pressing the first letters of the title, shortening the list to films that start with the letters you typed in. You can Print out your list of films in five different orders to the printer with the Film Print button."; 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 = ''; } }