var fDesc=new Array(); fDesc[0] = "This is a program to display movie catalog files (*.amc files) created by Ant Movie Catalog, a scriptable movie collection manager freely available at http://www.antp.be/. It has a configurable sleek user interface and is suitable for stand-alone catalog kiosque that only need to open the file read-only. Current features:

- Sleek, flat and configurable user interface.
- It reads the catalog file as read-only, so your catalog file is safe.
- It has password protected mode, that disallows user to change settings or open another file or close the program. This feature is useful when this program is used as a stand-alone movie catalog kiosque for movie rentals, dvd shops, etc."; 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 = ''; } }