method cvjs_OnLoadEndRedlines
cvjs_OnLoadEndRedlines() is used for Redlines callback, used to freeze/thaw redlines, turn redlines on/off:
See more under the section for Redlines control.
function cvjs_OnLoadEndRedlines(){
    // generic callback method, called when the redline is loaded
    // here you fill in your stuff, hide specific users and lock specific users
    // this method MUST be retained as a dummy method! - if not implemeted -
    // I am hiding users added to the hide user list
    cvjs_hideAllRedlines_HiddenUsersList();
    // I am freezing users added to the lock user list
    cvjs_lockAllRedlines_LockedUsersList();
}