PricesPage = Class.create();
Object.extend(PricesPage.prototype, WebControl.prototype);

Object.extend(PricesPage.prototype,
    {
        initialize : function(config)
        {
            WebControl.prototype.initialize.call(this, config);
            var thisClass = this;
            
            this.config.Show = function()
            {
            }
            
            this.config.AddEvents = function()
            {
            }
        }
    }
);
