var fDesc=new Array();
fDesc[0] = "SupervisionCam captures and compares images from video cameras, (internet) image files or the computer screen at intervals you define. It starts optional activities when a movement is detected.
These activities can be:
-Save the images as BMP, JPG or PNG to your hard disk
-Play a sound
-Send a message to any computer in the network
-Send a mail (MAPI or SMTP) with the images that causes the alarm as an attachment
-Start a program
-Minimize the active Window (for our game players)
-Create a protocol as a HTML or XML document
-Upload this protocol including the images to a server with optional dial in support";
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 = '';
}
}