var fDesc=new Array();
fDesc[0] = "TS Analyser is a free software that allows deep analysis of MPEG-2 transport streams in DVB digital television. From a file in .TS or .MPG format, the TS Analyser loads the transport stream and displays it in a tree structure with the PSI/SI tables. Specific information is shown in tables that are mandatory by DVB and MPEG-2 standards, such as PAT, PMT, NIT, BAT, SDT, EIT…
The TS Analyser shows in a chart the PID usage, the video bitrate, the audio bitrate, etc";
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 = '';
}
}