var fDesc=new Array(); fDesc[0] = "Insert a filtering context menu in the Windows Explorer, and support drag & drop operation. File time and wildcard patterns can be used as filtering conditions. The wildcard patterns can be part of the file name, extension and wild card characters. For example, the typical filtering pattern of MS Office file. Sub-folders and files can be specified to include or exclude from copy."; 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 = ''; } }