var fDesc=new Array();
fDesc[0] = "UN1TY App is an app platform that gives you premium value content in High Definition on your TV. UN1TY provides the latest Afro-Caribbean On-Demand Movies, Live Events and a choice of International Television Channels.
With UN1TY gives you access to all of your favourite African TV Shows and a library of free On-Demand movies. You can play, record, pause, resume watching and tweet all while watching Live TV.";
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 = '';
}
}