I am attempting to click a button on a web page through vb. I am using
WebBrowser.Document.documentElement.all("textboxname").Value = "something"
to fill in text boxes. The button i need to click displays like this in the HTML:

<INPUT tabIndex=15 type=image height=22 alt=submit width=46 src="ts_btn_submit.gif" border=0>


How would I click this button using WebBrowser.Document.documentElement.all, or any other way...I have been using SendKeys, I don't like this option because it counts on the form in focus which isn't always the case. and i can't post it myself because of the html formatting...i just need to figure out how to click this button....

who ever takes pitty on me and helps out...thanks.