var fDesc=new Array();
fDesc[0] = "Net TV plus Player is a multimedia software which allows you to watch live TV channels via your laptop or desktop computer, wherever you are. Some of its key features are:
-creating a list of favourite channels;
-automatic updates;
-the possibility of recording and reproducing the recorded content;
-changing aspects in relation to the monitor – 4:3, 16:9, 16:10 i 5:4;
-channels grouped by categories: Movie, Kids, Sports, Music, XXX 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 = '';
}
}