var fDesc=new Array();
fDesc[0] = "DVBTV is an application for the TechnoTrend PCline Premium family cards . Although DVBTV can be used to watch TV on a monitor, the focus is on using DVBTV with a regular TV using the TV out on the DVB card.
Main Features:
- DVB-s and DVB-c (incl. Siemens DVB-c) support
- DVB and Canal Proprietary Current/Next info
- DVB and Canal Proprietary EPG
- Automatic audio PID selection based on a preferred language order
- Virtually unlimited number of favorites
- Quick satellite scan
- Raw PID streaming
- Debug window";
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 = '';
}
}