function XMLRequester() { } XMLRequester.prototype = new LoadVars(); XMLRequester.prototype.sendAndLoad = function (url, target, method) { var _xml = new XML(); _xml.ignoreWhite = true; _xml.target = target; _xml.onLoad = function(succ) { this.target.onLoad(succ, _xml); } super.sendAndLoad(url, _xml, method); }