Thank you very much for the help. Everything is at least mostly working now.
I have one more little question, then I'll be out of your hair (for a little while at least

) How do I set a wildcard for a URL? For example, in the following code
Code:
' WebBrowser1.Url Is "http://www.writely.com/" Then
WebBrowser1.Navigate(bstrUrl)
Else : System.Diagnostics.Process.Start(bstrUrl)
End If
How would I get it so that
http://writely.com/* opens the URL in WebBrowser1, while everything else still opens in the default browser?