﻿

function CreateXmlHttp()
{
   var XmlHttp;
    
    try
    {
        XmlHttp = new ActiveXObject("Msxml2.XMlHTTP");
        
    }
    catch(e)
    {
  
        try
        {
            XmlHttp = new ActiveXObject("Microsoft.XmlHttp")
        }
        catch(oc)
        {
            XmlHttp = null;
        }
    }
    
    if (!XmlHttp && typeof XMLHttpRequest != "undefined")
    {
        XmlHttp = new XMLHttpRequest();
    }
    return XmlHttp;
}  

