you should try :
ShellExecute(hwndYourWindow,"open","my.html", NULL,NULL,SW_SHOWNORMAL);
or even better :
ShellExecute(hwndYourWindow,"open","C:\\path\\to\\my.html", NULL,NULL,SW_SHOWNORMAL);
look the MSDN documents on ShellExecute()
another command is...