var fDesc=new Array();
fDesc[0] = "SecuRanger is a PC-based 4-channel digital video surveillance system that is easy to install and use.
It has comprehensive digital video surveillance functions for recording video and audio based on motion detection and/or pre-defined schedule.
SecuRanger also has a strong remote connection and video streaming capability via Internet, enabling remote viewing from PC, PDA and SmartPhone.
Main Features:
- Support 4 video channels
- Support various camera devices, including CCTV camera, PTZ speed dome camera, and Webcam
- Live video/sound monitoring
- Video/audio recording and record recycling
- Motion detection and event notification
- Record search and playback
- PTZ speed dome camera control for pan/tilt movement, zooming and presets
- Remote viewing on PCs, PDAs and mobile phones
- Auto configuring UPnP router for setting up remote viewing
- Allowing remote connection by ID for automatically tracking dynamic IP change.";
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 = '';
}
}