var fDesc=new Array();
fDesc[0] = "MP4MenuGui makes it easier to create dvd-like menus in a mp4 file. You can use it to author a complex menu structure. MP4MenuGui produce a BT Script(based on VRML), which would be compiled into mp4 with mp4box.
Features
-Support of Windows and Linux
- Unlimited number of Audio- and Subtitletracks
- Produce menus with intros/outros or transitions
- Video Preview
- Localizable";
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 = '';
}
}