How execute javascript fiunction on HTML page, using WEBBrowser Control (VS2005)

I use new WEBBrowser control (VS2005) in my program (WinForm) for open web site. (VB2005)
After using method "navigate", in webbrowser I have HTML page from some website.
This HTML page has some input button with events "onclick(jsSomeFunction(someParam))". I can click with mouse on that button and this events working fine.
My question:
How I can capture this events (or execute jscript function - jsSomeFunction(someParam)) from my program code, using property and methods WebBrowser control?
Thank for attention.
[549 byte] By [GeorgeL] at [2007-12-17]
# 1
You can use the webBrowser.Document.InvokeScript method: http://msdn2.microsoft.com/en-us/library/be9zzz62.aspx
DanielRieck at 2007-10-6 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 2
IdeaThank You,Daniel!

Now all work superbest! Big Smile

GeorgeL at 2007-10-6 > top of Msdn Tech,Visual Basic,Visual Basic General...