var fDesc=new Array();
fDesc[0] = "AudioMuxer can generate a DVD, MPG or MKV files from a selection of MP3, Flac, (multi-channel) Wav, LPCM, DTSWav, DTS, DTS Master Audio, DTS Hi-Res, AC3 audio tracks.
MKV files can be exported to AVCHD or Blu-ray, and an ISO file can be created from the DVD, AVCHD or Blu-ray structure.
Audio tracks can be split with a CUE sheet and images can be selected that will be shown during playback. These images can be encoded in a NTSC/PAL or HD 720p/1080p video format.";
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 = '';
}
}