var fDesc=new Array(); fDesc[0] = "Autorun is widely used by computer virus to infect other computer via removable drives. Windows XP is particularly vulnerable to this kind of transmission due to its behavior of executing autorun.inf file automatically (Vista and 7 do not execute autorun script without user approval).

KillAutorun will help protect your Windows XP system using these steps:

- Disabling automatic execution of autorun script upon insertion of removable device.
- Automatic deletion of autorun.inf file from your removable drive upon insertion. This is done to prevent accidental invocation of autorun script by double-clicking drive's icon from Windows Explorer.
- Automatic creation of a special folder named 'AUTORUN.INF' that cannot be deleted to prevent creation of malicious autorun script by malware."; 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 = ''; } }