var fDesc=new Array();
fDesc[0] = "This application allows you to stream from a live video and/or audio source on your computer to an Icecast server. This application is 100% free.
-Connects to DirectShow Input devices (eg: webcam, capture card, microphone)
-Lots of config options
-Stream to File or Icecast server
-Audio settings (sampling frequency, channels and Vorbis Quality)
-Video settings (Normal Theora settings, video cropping, video resizing)
-Overlay image on top of video feed (supports BMP, JPEG and PNG 8/24)
-Will take advantage of Multi-CPU/Dual Core systems
-Excellent support for audio only streams";
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 = '';
}
}