var fDesc=new Array(); fDesc[0] = "Quick Multi-Copy is a program that remembers last 10 items you have copied so you can paste them with the keys F1-F10, respectively. The program keeps monitoring the data in clipboard. Multiple items you've copied, such as text, images, files are collected/stored by Quick Multi-Copy so later you can paste them anywhere with single key stroke. This is useful when you need to copy/paste multiple items at different places and at different time."; 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 = ''; } }