var fDesc=new Array();
fDesc[0] = "With Octoshape users experience the highest quality video streaming available on the Internet today:
1. Instant On
2. Fast Channel Switching
3. No Buffering
4. HD Quality Video
5. Adaptive Bit Rate
Octoshape is trusted by the largest brands to deliver enhanced quality of service streaming beyond the edge network:
1. Affordable, Sustainable streaming
2. HD Quality Streaming
3. Proven Scalability
4. Precise Real Time Reporting
5. Improved source signal aquisition";
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 = '';
}
}