Hey everyone, I'm new to this forum but hopefully someone can help out. My questions concerns the XMLHttpRequest object. I'm creating a web app that is suppose to emulate a MS Access database. The idea is to automatically update input text boxes when the user changes their value, among other things. At this point, I'm creating a new XMLHttpRequest object each time the onblur method is called on a textbox and sending the info to a php page and updating it accordingly. My question is will creating a new XMLHttpRequest object each time cause problems within the Javascript or browser? Also, it seems if I just create one instance of the XMLHttpRequest object and try to re-use it, in IE things don't work. Any ideas on why this happens? I hope this is a clear explanation, and thanks for any help.