var fDesc=new Array();
fDesc[0] = "Features:
- 32-bit and 64-bit Windows MCE XP 2005, Windows Vista MCE and Windows 7 support
- Works with Windows MCE extenders
- Reception of Satellite (DVB-S) and Cable (DVB-C) TV and Radio channels
- CI support for pay channels
- Guide a la Carte - for each channel choice of Native MCE Guide, EPG from Dreambox or XMLTV!
- MPEG-2 HD video support
- MPEG-4 HD video support *
- Multichannel audio support *
- Multiple audio tracks support *
- Teletext and subtitles *";
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 = '';
}
}