Both of your timer1 and timer2 have no Interval property setup. And neither are started anywhere.
In your Form's constructor, set timer1.Interval to X and timer2.Interval to Y (in milliseconds).
Then, call timer1.Start() and timer2.Start(). Also, use the Navigate() method off your webbrowser control.
