var fDesc=new Array();
fDesc[0] = "neutrinoTV is a tool for watching live TV on your PC via a Neutrino based dbox or dreambox. Hence it's main feature is watching live TV!
Besides that, here are some more features which should further improve the experience:
- Detailed EPG lists now and next events with description
- Simple zapping live TV by clicking on a different channel
- Progress bar of currently running show
- Radiomode: listen to radio channels with neutrinoTV
- On screen display for displaying important information also in fullscreen mode
- Completely controlable with keyboard";
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 = '';
}
}