var fDesc=new Array();
fDesc[0] = "AVStoDVD is a flexible tool that enables users to convert various media formats to DVD compliant streams and burn them into a highly compatible multiple tracks DVD with customizable menus.
Features:
- Video encoding using HCEnc/FFmpeg.
- Audio encoding using FFmpeg/Wavi/Aften. Multiple Audio tracks are supported.
- Subtitles encoding using SubtitlesCreator/VobSub. Multiple subtitles tracks supported.
- DVD Authoring using MuxMan/BatchMux.
- Internal DVD Menu Editor with customizable static and motion menus and more.";
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 = '';
}
}