function registerPostParseFunction(fn) {
    if (isFunction(fn)) {
        if (typeof postParse == 'undefined') postParse = new Array();
        if (typeof fn == 'object') {
            postParse = postParse.concat(fn);