In Windows the default web browser will be configured to automatically handle calls to access web pages. In your program, all you have to do is call the ShellExecute() API:
ShellExecute(NULL, "open", "http://www.tek-tips.com", "", NULL, SW_RESTORE);
Jeff...