var fDesc=new Array();
fDesc[0] = "Rocket Broadcaster streams audio to Icecast, SHOUTcast, and most online streaming services. You can record and broadcast audio from a microphone or line-in Jack; capture and broadcast audio from other apps on Windows, like Skype or your music player; broadcast audio with different codec profiles or multiple servers; process your radio station's audio with world-class DSP effects plugins; mix audio from both your microphone and other applications seamlessly; stream encrypted audio securely to your Icecast server, and more.";
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 = '';
}
}