This textbox isn't designed for "industrial strength," so issues like this will occur. If you want to try to fix it, you'd need to use a timeout such as:
this.textbox.onkeyup = function (oEvent) {
//check for the proper location of the event object
if (!oEvent) {
oEvent = window.event;
}
//call the handleKeyUp() method with the event object
clearTimeout(this.timeoutID);
this.timeoutID = window.setTimeout(function () { oThis.handleKeyUp(oEvent);},250);
};
Nicholas C. Zakas
Author, Professional JavaScript for Web Developers (ISBN 0764579088)
http://www.nczonline.net/