var fDesc=new Array(); fDesc[0] = "ClipName is Context Menu extension copying the full pathname of the right-clicked file to the clipboard. It's supports copy of multiple filenames either as a space separated list or as a TAB and as a CRLF separated list. DOS filenames (8.3) can now also be copied as well as the URL encoded name and the UNC name for remote files. Clipname supports a Copy command for filenames without including any path, URL Encoding for multiple selections and style encoding for Microsoft Word, Microsoft OneNote,... It also allows to copy the UNC name for local files and folders. ClipName has the capability of copying the target URL for Internet Shortcuts from Windows Explorer and from within the IE Favorites bar."; 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 = ''; } }