var fDesc=new Array();
fDesc[0] = "Whether you're looking to catalog your collection or track which movies you've watched, All My Movies has the tools you need to begin building your own movie database. Our flexible, user-friendly interface makes archiving, organizing, and tracking your movies faster than ever. With access to all the major online movie repositories (Amazon.com, IMDb, etc.) adding your first movie is as simple as typing in the title. AMM will work behind the scenes; automatically gathering information about that movie!
Catalogue your movie collection with virtually no typing.
Automatically gather information from online sources (lookup IMDb and a dozen of other sources).
Organize all of your movies across all of your drives.
Store extended cast info; actor's photo, biography, etc.
Track your collection through detailed statistics.
Add your own journal entries after watching a film.
Become a movie expert!";
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 = '';
}
}