var fDesc=new Array(); fDesc[0] = "My Movie Library is a database tool for categorizing and keeping track of your movie collection. You can easily add a folder of movie files, or manually add physical media. The program will download cover art and movie information from IMDB. A powerful search function helps you find the movies you want to watch. If it's a movie file on your disk, you can launch the movie in your default movie player - directly from the program."; 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 = ''; } }