      private void goButton_Click(object sender, EventArgs e)
        {
            // Navigate the Web Browser control to the URL indicated in the toolStripTextBox
            if (urlAddress.Text.Length != 0)
            {
                webBrowser1.Navigate(urlAddress.Text);
            }
        }
