var fDesc=new Array();
fDesc[0] = "With DVB World you can enjoy satellite TV in digital quality simply by your PCs or notebooks.
DVBWorld supports scanning channels by 3 methods: By location, By frequency, By frequency range.
Also, DVBWorld HD Box brings “Internet via Satellite” to your PC. You can enjoy surfing Internet at high download speed & never suffer from any delay!";
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 = '';
}
}