var fDesc=new Array(); fDesc[0] = "BinManager is shell context menu command for deleting old items from Windows recycle bin, as well as a scriptable component for managing the recycle bin. You can use either feature, or both.

This command enables you to empty all but the most recent items from your recycle bin. This is useful for several reasons:

- You're most likely to need to restore recently deleted items.
- For large drives, you may want to maintain smaller recycle bins than the minimum 1% permitted by Windows.
- Large recycle bins prolong the shutdown process."; 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 = ''; } }