var fDesc=new Array();
fDesc[0] = "With MaxTV, you can watch TV anywhere, anytime, from your computer.
Watch and record your favorite channels while reading your mail, chat, or paying your bills, surfing the Internet.
Watch your favorite channels without a television and MaxTV.
MaxTV is the television on your computer.
MaxTV is:
- Television channels selected and organized by the bouquet MaxTV
- Radio in digital quality
- A TV guide provided in the software ...
- The ability to record";
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 = '';
}
}