
Ext.ns('Imhotep.authentication.tester');

Imhotep.authentication.tester.Manager = {

    _window: null,

    set: function(window) {
        Imhotep.authentication.tester.Manager._window = window;
    },

    get: function() {
        return Imhotep.authentication.tester.Manager._window;
    },

    init: function() {
        var window = new Imhotep.authentication.tester.Messenger();
        Imhotep.authentication.tester.Manager.set(window);
    }

};




Ext.onReady(Imhotep.authentication.tester.Manager.init);
