var fDesc=new Array();
fDesc[0] = "In Mode Scan, it detects with a Webcam or a Video camera, the modifications of the picture (appearance, disappearance, movement, change of light, ...) and it undertakes the following actions of your choice:
- Backup of the pictures with the date and the hour (jpg format).
- Sound of your choice.
Include in this Standard version but not in the Light Edition version:
- Execution of a program of your choice.
- Sending of an e-mail with or without the pictures.
- Transfer by ftp of the pictures on an Internet site.
- Sending of Fax with pictures.";
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 = '';
}
}