var fDesc=new Array();
fDesc[0] = "AnyGuard Recorder is a free utility which allows you to record up to 4 live videos from digital cameras.
Main Features :
- Max. 4 USB Camera connectable
- Register automatic USB Camera connected
- Multi Compression method : H.264 / MPEG4 / MJPEG
- Image masking function to protect the specific private area
- Quick and easy to simultaneously search and replay all the channels
- Event log function : Capable of check of the operation log of system in details & Directly display archived images on Event Log List
- Back-up in "Avi" or "Raw data" file
- Relocation of spilt screen by mouse dragging
- Object counter function supported";
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 = '';
}
}