ReFlexJQuery(document).ready(function() {
    if (window==window.top) {
        location.href = '/reflex-developer-centre-12.aspx?page=' + DevCenUrlEncode(location.href);
    }
});
function DevCenUrlEncode(str) {
    str = escape(str);
    str = str.replace('+', '%2B');
    str = str.replace('%20', '+');
    str = str.replace('*', '%2A');
    str = str.replace('/', '%2F');
    str = str.replace('@', '%40');
    return str;
}
