This will work for both IE and FF, I have tested and used this vigorously. Hope you website creators can use it.
Put this at the head of your site:
Code:
<script type="text/javascript">
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
</script>
That will tell IE and FF how to handle bookmark links when you use this in your href:
Code:
javascript:bookmarksite('NAMEOFSITE', 'URL')
For example,
Code:
<a href="javascript:bookmarksite('Wild Webcam Girls', 'http://www.wildwebcamgirls.com')">Bookmark</a.
This is for all those people that wish they could have a bookmark link anywhere on their site for any link on their site but don't know how to make it happen with FF too.

