public void OpenUrl(string link)
{
RegistryKey key = Registry.ClassesRoot.OpenSubKey(@"httpshellopencommand");
string s = key.GetValue("").ToString();
System.Diagnostics.Process.Start(s.Substring(0, s.Length - 8), link);
}