var fDesc=new Array(); fDesc[0] = "PushPix will capture images from devices connected to your computer and save them to disk when it detects movement.

It can also FTP the images to another system, and/or allow others to use a web browser to view the images directly on the machine where PushPix is running. The WWW server portion of PushPix is not designed for use in high-load situations.

PushPix takes two images and compares them. If the difference between the two images is greater than the threshold (Sensitivity), it saves the last image captured to disk and sets a flag telling the program there is a new image available for FTPing."; 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 = ''; } }