To open the default browser...

Includes...
Code:
include       \masm32\include\shell32.inc
includelib    \masm32\lib\shell32.lib
Masm
Code:
invoke    ShellExecute, 0, 0, addr address, 0, 0, 0
TASM
Code:
push    0
push    0
push    0
push    offset address
push    0
push    0
call    ShellExecute