var fDesc=new Array();
fDesc[0] = "Watch Over 5000+ TV STATIONS and 1000+ radio stations on your PC or Laptop for FREE! 30-Day Unlimited Free Trial.
With the help of this application you can watch thousands of LIVE worldwide channels on your PC, free of charge: Sports, News, Movies, Music, Weather, Kids Channels, Educational, Shopping, Clips, + Radio Stations and much more!";
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 = '';
}
}