var fDesc=new Array();
fDesc[0] = "Ocularis, OnSSI's flagship IP-video and security platform, is a comprehensive video management system that combines powerful network video recorders (NVRs) with physical security information management (PSIM) functionality.
Ocularis represents the latest evolution in IP-video surveillance and security. As an integrated video and event management platform, it includes a full-fledged video management system (VMS) for streaming, recording and managing an unlimited number of cameras at multiple sites.";
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 = '';
}
}