var fDesc=new Array();
fDesc[0] = "The MxControlCenter video management software can connect any number of cameras at any locations into a straightforward and powerful video security system with centralized or local, user-based operation and evaluation. The advanced program, specifically tailored to the high-resolution MOBOTIX network cameras, offers a user-friendly interface and camera display, convenient video search, practical alarm handling, automatic camera integration, video storage on file servers and a useful configuration and update assistant.";
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 = '';
}
}