function initReqObj()
{
        if (window.ActiveXObject) 
            xmtHTTP = new ActiveXObject("Microsoft.XMLHTTP");
        else if (window.XMLHttpRequest) 
            xmtHTTP = new XMLHttpRequest();
}

