Open link in new tab in browser

Hi,

What's the equivalent of ShellExecute(0,'open',PChar('https://www.whatever.com'),nil,nil,SW_SHOW) in Web Core. I just want to open a specific site in a new tab of the browser?

Thanks,

Ken

asm  window.open("https://www.whatever.com");
end;

Thanks

The Pascal way of doing this is:

  Application.Navigate('https://www.tmssoftware.com', ntBlank);

Thanks Bruno.