WP8 2.1 tip - native open broswer

If you need to open a ie with c++

Platform::String^ s = ref new Platform::String( L“http://google.co.uk/” );
Windows::Foundation::Uri^ uri = ref new Windows::Foundation::Uri(s);
Windows::System::Launcher::LaunchUriAsync(uri);

Hope it helps someone.