var fDesc=new Array(); fDesc[0] = "PUI (aka Program Uninstallation Information) is a small utility that has been developed with the sole intention of allowing users to view and modify the uninstall string for installed programs without having to enter the registry, and additionally allows simple removal of such programs from a simple to use interface.

PUI additionally identifies programs that cannot be uninstalled, and lets you know if this is the case, without the need for extra long hours spent looking on authors homepages, just to be told "you can't remove it"."; 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 = ''; } }