var fDesc=new Array(); fDesc[0] = "myDesktop Online allows you to periodically capture an image of your desktop and upload it remotely to an FTP server. You can then expose your desktop via a website or simply check up on what someone may be doing on your computer. When running, the program sits unobtrusively in the system tray, uploading images at whatever rate you specify. Supported image formats include BMP, GIF, PNG, and JPG (with variable quality compression).
myDesktop Online supports multiple monitors and will capture your full desktop. After capturing your desktop, you can archive the image both locally and remotely on the FTP server. You also have the option to skip captures if certain windows are open (filtered by window name)."; 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 = ''; } }