var fDesc=new Array(); fDesc[0] = "This program allows the user to easily select a program in Digiguide and set a marker, that sets a Dreambox to record or switch to programs, at the appropriate times.
It has a number of features that are powerful, but made easy to use.
The program must first know some details about the Dreambox. It needs to know what the Dreambox IP is and what sort of box and image is used. (N.B. Some boxes and images are not supported).
It also needs to map the names of channels in Digiguide to the Service Reference IDs that the Dreambox uses to identify channels. This process can be time-consuming, but a number of ways are provided to make this process easy and quick. There are also a number of options, that control the way in which the Dreambox is set"; 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 = ''; } }