Hey guys I'm trying to scrape the right url from html file using webbrowser

I want to scrape this Href and navigate to it. But the problem is every other comment with reply is almost the same. So if I use to scrape hrefs and check the name it will give me the reply buttons of all the comments + the new comment button. Is there a way to grab this link only this one by it's Class name or something?

The One I need:
Code:
<a href="forums.php?op=post&amp;p=1409951"><img src="/images/icons/comment_add.png" class="inline_icon" align="top">&nbsp;New Comment</a>
The ones I don't need:
Code:
<a href="forums.php?op=post&amp;p=1409971">Reply To This</a>
I'm trying to create my own browser and this should be a button short cut If I want to comment. Thanks a lot.