var OnKeyRequestBuffer =
    {
        bufferText: false,
        bufferTime: 200,

        modified : function(strId) {
                setTimeout('OnKeyRequestBuffer.compareBuffer("'+strId+'","'+xajax.$(strId).value+'");', this.bufferTime);
        },

        compareBuffer : function(strId, strText) {
            if (strText == xajax.$(strId).value && strText != this.bufferText) {
                this.bufferText = strText;
                OnKeyRequestBuffer.makeRequest(strId);
            }
        },

        makeRequest : function(strId) {
            tx_ansearchit_formprocessFormData(xajax.$(strId).value);
        }
    }

