If you simply what to visually see the page in the default browser then
add ShellAPI to your uses clause and
uses
ShellAPI;
var
MyUrl: String;
procedure DoIt;
begin
ShellExecute(0,
'open', PChar(MyUrl), '', '.', SW_SHOWMAXIMIZED);
end;
If you want to do it behind the scenes...