var fDesc=new Array(); fDesc[0] = "ArsClip is a FREE (freeware) utility for the windows clipboard. ArsClip monitors the clipboard and keeps track of the entries. Press a configurable hotkey and select an item (or items) to quickly paste into a program.

ArsClip used to be barebonez, but I think I can safely say that it has become a nicely featured program (due to user requests for changes). ArsClip remembers the last 15 (default) or more text entries entered into the Window's clipboard and can be configured to monitor non-text items. Delphi 6 (Personal) source code is included - modify it freely for any non-profit use. NOTE: The newer versions are compiled with Turbo Delphi for Win32 (also a free download)."; 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 = ''; } }