var fDesc=new Array(); fDesc[0] = "Clean Sources Plus adds two right-click menus to folders.

Main features:
-Removes bin, obj, Debug and Release folders
-Removes source control bindings from project and solution files
-Removes user setting files
-Zips the entire folder contents into a single zip file. This zip file is placed in the root folder and shares the same name as the folder.
-The regex patterns used to determine what files and folders to delete are set in the .config file. This way you can customize what gets deleted without recompiling."; 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 = ''; } }