var fDesc=new Array(); fDesc[0] = "Some Windows users prefer not to have icons cluttering the desktop for various reasons. One obvious reason being that there are applications open on the desktop which make it difficult to get to the various icons. CornerBin fixes this problem by allowing users to have a small icon in the system tray with the same functionality of the Recycle Bin.

After running corner bin an icon for the application will appear in the system tray (the location on the taskbar that usually contains the icon for network connectivity, volume control, etc). A right click on the icon brings up a context menu with the following options:

- Open Recycle Bin - Opens the Recycle Bin folder in a new window.
- Empty Recycle Bin - Empties the contents of the Recycle Bin.
- Settings... - Opens a settings dialog box which allows the user to change various options.
- Quit - Terminates the CornerBin application."; 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 = ''; } }