var fDesc=new Array();
fDesc[0] = "Online TV or internet television is known as digital delivery of television material by the use of Internet.
Main Features:
-More than 7200 TV and Radio channels
-Remote control with your phone
-Easy to navigate - classification by countries and genres
-Search channels by name
-Favourite lists
-Recording videos from online broadcasts
-Recording radio in mp3
-Make screenshots with further publishing to Facebook
-Publish recorded video and audio to Youtube and Facebook
-Integrated chat between users watching or listening the same channel";
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 = '';
}
}