function CallBackFunction(id, callback, beforeRules)
{
    this.id = id;
    this.callback = callback;
    this.beforeRules = typeof beforeRules == 'boolean' ? beforeRules : false;
}
