var fDesc=new Array(); fDesc[0] = "CopyPathMenu is an extension to the context menu of the Windows Explorer, which allows to copy the path of a file to the clipboard.

Depending on the settings, the path can be copied in different ways, for example to send it as a clickable link in an email."; 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 = ''; } }