var fDesc=new Array();
fDesc[0] = "A Multimediadatabase for films/movies, music and tv-series.
Main features:
- add your films/movies each stored in a folder on multible hard-disks and or folders
- IMDB-Loader Internet Movie Database(imdb.org) tool to get additional data for your films
- IMDB-Storyloader - show story for selected film from IMDB
- File-Properties loads size(width,height), duration from moviefile and store it
- Play movie, opens the standard player for fileformat installed on your system, if your film is stored in a image file(img,iso) TMP mount it with Daemon-Tools
- Open directory/folder - opens the directory where film is stored in
- Edit all information TMP stored";
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 = '';
}
}