var fDesc=new Array(); fDesc[0] = "Features:
- Archives graphic clipboard contents to a file instantly
- Full file drag and drop support allows you to drag clipboard content as if it is a file
- Instantly publish graphics on your local web-server and paste a link to it with CTRL SHIFT V
- Paste a file link of your graphic in file upload dialogs. Great for web based content management
- Copy graphic content of a file to clipboard when you copy a file in File explorer
- Intuitively resize graphics and share them
- Browse your clip board history"; 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 = ''; } }