var fDesc=new Array();
fDesc[0] = "Luxriot Video Management System is a program that accepts MJPEG, MPEG4 and H.264 as well as HD and megapixel video streams from Network (IP) cameras, encoders and video capture boards. It includes features such as:
- Two-way audio for Audio enabled devices
- Multicast for multicast enabled cameras
- Support for multiple capture boards for hybrid installations
- 4K Ready
- Chromecast support.";
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 = '';
}
}