I have following code to detect for xmlhttp object and it fails on default
security settings in IE6 Win XP, but works on IE6.0 Wn 2000
<SCRIPT language="VBScript">
Function DetectWinhttp()
On error resume next
DetectWinhttp = IsObject(CreateObject("Microsoft.XMLHTTP"))
end function
</SCRIPT>