var fDesc=new Array();
fDesc[0] = "R-Bot Concept V-Streaming is a program for live video and audio from webcam, screen capture, text overlay and date, video communicating objects, video and audio files, a microphone and the mix of everything.
Main features:
- V-Studio Streaming rotates with the V-streaming video editor with transitions and more.
- New Audio tab lets you stream audio content.
- Video HD is supported for editing and broadcasting.
- Recording video and audio on your hard disk.
- Increased performance thanks to the management of frames per second.
- Images are now resizable with the ability to add sources.";
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 = '';
}
}