How to force a WebLinkLabel to open a new TAB/Window

I have a TWebLinkLabel on my form - is there a way to have the link opened in a new tab opr window?

Thanks for your support!
Bernd

From the OnLinkClick event, call:
Application.Navigate(URL, ntBlank)
and it will open the URL in a new browser tab.