I see no reason to put that in a class other then Form2 (Form2 is also a class!). If you do think you have a good reason, you can pass the WebBrowser along for the ride:
Code:
public void Navigate(WebBrowser wb, string url)
{
   wb.Navigate(url);
}