var fDesc=new Array(); fDesc[0] = "XpConfigurator is a tiny Windows XP tweaker. Among functionalities, we can mention:

- [Clear ProductID]: clears productID.
- [Remove Windows Spy]: disables Windows registration wizard.
- [Remove Zip File Support]: disables Windows Zip file support - useful when you have lots of zip files on your folders and you have you own zip manager.
- [Add DosBox to Contextual Menu]: adds a dosbox prompt in right click under Explorer."; 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 = ''; } }