/* support.js */

$(document).ready(function() {
    $('a').click(function () {
        h = this.href;
        if (h
            && (h.indexOf('/mbr')>-1 || h.indexOf('/rdbadmin')>-1)
            && ! $.cookie('rdbhost') ) {
            y = confirm("This page restricted to account holders.\n"+
                        "           Proceed to Login?              ");
            return y;
        }
        return true;
    })
})