Ok this event is called when you click on a link within the webbrowser that opens a new window, Originally it would open IE but i have changed mine so it doesn't but i need to get the links URL that was clicked to do what i need to do(Which is open a new tab with that URL) How do i get the URL of the link clicked?

My code so far:
VB.NET Code:
  1. Private Sub currentBrowser_NewWindow(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles currentBrowser.NewWindow
  2.         e.Cancel = True
  3.         If My.Settings.NewWindow = False Then
  4.             tabs.AddTab(I NEED URL ARGUEMNT HERE)
  5.         Else
  6.             Process.Start("Tinternet.exe", I NEED URL ARGUEMNT HERE)
  7.         End If
  8.     End Sub