_escapeXML: function(text) {
        text = text.replace(/&/g, '&');
        text = text.replace(/</g, '&lt;');
        text = text.replace(/>/g, '&gt;');
        return text;