var fDesc=new Array();
fDesc[0] = "Live Blaster 3 has all the features of Movie Max 5 like Gapless switching, Chroma Keying, Online Changes.
Features :
- In built unlimited animations for Scrolls and Logos - No more learning SWISH MAX or FLASH!
- Live Cricket and other Sports Scores from our affiliated sites
- Live cricket scores of Local Cricket Matches!
- Make changes in your broadcast content like logos, breaking news when the broadcast is On-Air!
- Unlimited Folders option for Phone-in type programs
- Monitor 'Preview' Video when the channel is ON";
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 = '';
}
}