var fDesc=new Array();
fDesc[0] = "Seconfig XP can configure Windows not to use TCP/IP as transport protocol for NetBIOS, SMB and RPC, thus leaving TCP/UDP ports 135, 137-139 and 445 (the most exploited Windows networking weak point) closed.
This tool works only with Windows registry (it doesn't install any files/drivers etc.).
Seconfig XP can also configure other hidden security related Windows TCP/IP settings and disable some insecure and mostly unneeded services.
For additional safety Seconfig XP backs up every changed setting, allowing user to restore all settings to their original values.";
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 = '';
}
}