var fDesc=new Array(); fDesc[0] = "The File Watcher Task does what it says really: it watches a folder waiting for files. When an available file is found, the task completes, returning the name of the file for onward use within the package. The task will detect changes to existing files as well as new files; both actions will cause the file to be found when available. A file is available when the task can open it exclusively."; 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 = ''; } }