var fDesc=new Array();
fDesc[0] = "Lets you record quick updates from your desktop. Run it full-screen and turn your computer into a kiosk!
Main features:
- Works as a stand alone *photo booth* that you can set up at any place or event. For example: publish real-time updates from your party.
- Give it your own custom text blurb and #hash topic (ex: "Hanging out at #moustache party") which you can watch as a channel in TV Mode.
- Super light and easy. Keep in on your desktop as a quick recorder. See a video demo here.";
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 = '';
}
}