var fDesc=new Array();
fDesc[0] = "Watch the latest Hollywood blockbusters, re-runs of your
favourite TV shows, LIVE on your PC, direct over the
Internet with the ALL-NEW "Watch TV On Your PC"! Your Favourite TV Shows, ON DEMAND - Including 24, Dr Who, Desperate Housewives, Little Britain, Prison Break, The Office, Ugly Betty & MORE! The HOTTEST Blockbuster Movies - Whatever you want, it's here! Action, comedy, horror, and more. Simply select a movie channel, sit back and enjoy! Late-Breaking News From Across the GLOBE - Tune into hundreds of news channels from across the globe to find out what's REALLY going on!
LIVE Sports Coverage in the UK, USA & MORE - Watch all of the games NOT featured on regular TV, including Sky's Saturday Premiership and Championship matches!";
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 = '';
}
}