var fDesc=new Array();
fDesc[0] = "This program provides convenient monitoring features such as real-time video monitoring, video search and backup, and various system setup options. It supports a maximum of 2 monitors,enabling you to monitor up to 128 channels simultaneously in real time. It is also equipped with efficient search features including specific area and text searches.
The SNM-128S reports on the real-time situation of registered units via various methods, helping you understand and take appropriate countermeasures as quickly as possible. It also offers a feature to save and search event logs.";
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 = '';
}
}