var fDesc=new Array();
fDesc[0] = "Visionica elevates your video monitoring capabilities to the clouds, for recording and camera management takes place remotely over the Internet.
Visionica is a camera management solution designed to achieve optimal Usability Robustness and Affordability for a whole range of applications.
Visionica employs a cloud computing platform that creates easy and efficient access to your remote cameras. Data and recordings can now be stored in off-site servers for maximum security and economy for your operations.";
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 = '';
}
}