var fDesc=new Array(); fDesc[0] = "Movies Database is an application that helps you manage your movie collection.
The primary role of this application is to help you collect movies, save information regarding these movies, and find them out easily. You can save movie information like title, released year, genre, artists, location where the movie is saved (whether in the harddisk of your computer or in optical disks), etc. You can also search movies by title or genres or artists."; 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 = ''; } }