var fDesc=new Array();
fDesc[0] = "Want a dose of entertainment on your machine. You have come to right place. Just download our little wonder - Webdunia TV.
Its small, cute & useful. It has 2 modes - "TV", for the videos & "Radio", for the songs.
Trust us, you will never be bored. It has channels like - Movie-Trailer, Yoga, Rajshri Productions, EROS Entertainment, ZoOm TV, Bindaas TV, Bollywood Videos, Hollywood Videos, Believe It Or Not, Religious Journey and many 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 = '';
}
}