﻿function getxmlobj()
{
    var xmlobj=null;
    if (window.ActiveXObject)
    {
        try
        {
            xmlobj = new ActiveXObject("Microsoft.XMLHTTP");
        }
        catch (e)
        {
            xmlobj = new ActiveXObject("Msxml2.XMLHTTP");
        }
    }
    else
    {
        xmlobj = new XMLHttpRequest();
    }
    return xmlobj;
}
window.onerror=function(msg,url,line){
    return true;
}