private void icd_WindowLoaded(object sender, EventArgs e)
        {
            string chatLog = fm.LoadIndividualChat(username, receiver);

            window.AppendTextBox(chatLog);
            if (isP2P)
            {
                window.attachmentPanel.Visible = true;
                window.userStatusLabel.Text    = "Online";
            }
            else
            {
                window.attachmentPanel.Visible = false;
                window.userStatusLabel.Text    = "Offline";
            }
            window.Hide();
        }