var fDesc=new Array();
fDesc[0] = "Netcam Watcher Remote Control is a remote client for Netcam Watcher Professional.
It lets you connect to a remote server system running Netcam Watcher Professional, and then view live images from the cameras, view recordings, start and stop cameras, control Pan/Tilt/Zoom on cameras that support this, and also enable and disable alarms.
Netcam Watcher Remote Control can be used over a local network (LAN) or a wide area network (WAN) such as the Internet.";
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 = '';
}
}