var fDesc=new Array(); fDesc[0] = "Copy Contents adds a Copy Contents menu item to the context menu of file and folder allowing you to copy the contents of plain text files, image files (.jpg, .pcx, .png, .bmp, .tga, .gif, .tif), and folder content list to the Windows clipboard, so you can easily paste them in another application. You can append text to the clipboard by holding the Ctrl (control) key on your keyboard while selecting the Context Note menu item."; 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 = ''; } }