var fDesc=new Array();
fDesc[0] = "An MPEG 2 decoder allows you to play and work with DVR-MS files. This setup will install the following decoders:
GPL MPEG 1/2 Decoder
AC3 Filter
Both these decoders are open source and protected by the GNU Public License. DeskShare has made minor modifications to the GPL MPEG 1/2 Decoder and repackaged the AC3 Filter without making any change.";
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 = '';
}
}