// Lang

Box = new (function() {
   var _data, _this = this;
   
   _this.constructor = null;
   
   _this.getData = function() {
      return _data;
   }
   
   _this.activate = function(form) {
      Utils.request({
         url: '/backend/confirm_box.php',
         data: $(form).serialize(),
         success: function(data) {
            location = data;
         },
         error: function(errno, error) {
            Utils.alert(L('LBL_ERROR'), error);
         }
      });
   }
});
