var fDesc=new Array(); fDesc[0] = "Alternative Movie Database (AMDb) is a local Interface to the Internet Movie Database (IMDb) for Win32 (Windows32 and Windows NT). It contains both a graphical and command line interface to the IMDb.
It's purpose is to give you fast and easy access to the information of the IMDb without the need to go online."; 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 = ''; } }