<System.Runtime.InteropServices.DllImportAttribute("shell32.dll", SetLastError:=True)> Shared Function ShellExecute(ByVal hwnd As IntPtr, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Integer) As Integer
End Function
'
Public Sub RunUrl(ByVal sUrl As String, Optional ByVal bMaximized As Boolean = False)
ShellExecute(0&, "open", sUrl, String.Empty, String.Empty, IIf(bMaximized, 3, 1))
End Sub