var fDesc=new Array(); fDesc[0] = "This is an optional addition for watchDirectory customers that runs minimized in your system tray (the area with the windows clock). It can give you visual and audible alerts for file system events detected by one or more watchDirectory tasks on the local computer. You can also enable On Screen Display. This will "paint" the messages in one of the corners of your screen without interrupting your work. Select how much "history" should be available when you open the wdNotify messages window."; 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 = ''; } }