var fDesc=new Array();
fDesc[0] = "ExPVR is a software package which allows you to manage the recordings stored on Sky+, Sky+ HD and other XTV-based personal video recorders. This program will allow you to upgrade your existing Sky+ HD box hard disk space up to a huge 2TB, while retaining all of your existing recordings.
It also helps you transfer your recordings between Sky+ HD boxes, copy recordings from your old SD Sky+, or Thompson Sky+ HD box to your new device, and backup your Sky+ recordings to your PC, safe-guarding them from being lost.";
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 = '';
}
}