var fDesc=new Array(); fDesc[0] = "Free Clipboard Manager saves every text and image that is copied in the clipboard. This is useful if you have to take a lot of screenshots or if you should access multiple notes or parts of the code without the need to paste them in a text editor. You can simply hit CTRL-C or PrtSc to save automatically the clipboard content to HDD."; 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 = ''; } }