The Feed Dialog can easily do what you're looking for:
https://developers.facebook.com/docs/reference/dialogs/feed/
Just create your own custom Share button image, and wrap it in an anchor tag, like so:
<a href="https://www.facebook.com/dialog/feed?app_id=363642247015422&link=http://www.example.com/&picture=http://fbrell.com/f8.jpg&name=Facebook%20Dialogs&caption=Reference%20Documentation&%20description=Using%20Dialogs%20to%20interact%20with%20users&redirect_uri=http://matthew.fbdublin.com/response">Share This</a>
Which will give you something like this:
Share This
You should obviously change all the URL parameters like picture, link, app_id, name, caption and redirect_uri to match your own setup. app_id you can get by going to https://developers.facebook.com/apps/ and either creating a new app or using an existing one for your site. redirect_uri is where the User should be directed to after sharing the post - this has to be a URL owned by the app you specify.
This will be a full page redirect to the Feed dialog. If you want to customise it more and use an iFrame or Popup dialog, then you should read the documentation I linked to and implement the Javascript SDK version of the dialog.