var fDesc=new Array();
fDesc[0] = "Widevine’s suite of video optimization tools enables content owners, Internet service providers and MSOs to provide the best possible live and on-demand entertainment experiences affordably.
Widevine adaptive streaming introduces QoS controls which adapt internet video quality to match a consumer’s available bandwidth. The solution enables consumers to bookmark, fast forward and rewind internet video—just as if they were watching a DVD or Blu-ray disc in the living room";
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 = '';
}
}