var fDesc=new Array();
fDesc[0] = "Added: Option to select main movie on DVD's. This will later on be used in situations where the automatic selection fails, which however is rare.
Added: Mapping of TV Series on Blu-ray discs. It is however not yet possible for us to provide instructions on how to see what is playing in a player.
Added: Contributing of chapter titles on Blu-ray discs.
Fix: Invalid mappings are now removed upon TV Serie data download for discs.
Fix: folder.tbn renamed to movie.tbn for VIDEO_TS folders to display data correctly in XBMC.";
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 = '';
}
}