public void SetChatWindow(Stream stream, StreamDeskDatabase database)
        {
            Window.Title = "Chat: " + stream.Name + " > " + stream.ProviderObject.Name;
            #if DEBUG
            Window.Title += " (Debug Build)";
            #endif

            webBrowser.MainFrame.LoadHtmlString((NSString)database.GetChat(stream), new NSUrl("http://example.com"));
        }