var fDesc=new Array();
fDesc[0] = "Easily record your favorite TV programs with a push of a button. Never miss your favorite show again!
For The Record is an advanced rule-based scheduling system to record your favorite TV programs in a very intelligent way.
It has full support for running as a service with multiple clients (see example setup diagrams below). Access to the system is available ranging from a typical Windows application over plugins for living-room Media playback software to internet Web Access to give you the maximum possible reach.
Because the scheduling system is rule-based it offers unparalleled power to record exactly what you want. The examples below can be easily set up in a single schedule definition each.";
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 = '';
}
}