var fDesc=new Array();
fDesc[0] = "Wirecast is ideal for novices and professionals alike who want to stream or record professional broadcasts to live or on-demand audiences.
Benefits:
Easy for anyone to use – a novice, corporate communicator or streaming media producer
Portable – load on a laptop and take it anywhere
Flexible, upgradeable software, enables fast, easy addition of new formats and features
Intuitive and fully-integrated with live streaming services & CDNs enables quick, easy live streaming to audiences located anywhere in the world
Ideal for live web broadcasts: entertainment, sports, business & community events An affordable alternative to costly hardware broadcasting solutions";
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 = '';
}
}