Regard taphilo's reply on "Bookmarks" I would have to disagree with you. In search engine marketing, one is marketing for the search engines so people can find the site, not so that one can bookmark or "Add To Favorites". Always when I add a site to my favorites I will create my own title. I am not at all concerned with what displays there by default.
If one is that concerned over people bookmarking their site, they can use a JavaScript and a button on their site that will allow one to bookmark the site and have a default title for the bookmark.
Here is the script:
<script language="javascript">
if (top != self) {
top.location = location
}
function addFav(){
if (navigator.appName.indexOf("Microsoft") != -1 && parseInt(navigator.appVersion.charAt(0)) >= 4 && navigator.appVersion.indexOf("Win") != -1){
window.external.AddFavorite('
http://www.domain.com/' 'Title of Bookmark Here')
}
else{
var newWin = window.open("","newWindow", "width=200,height=120")
var newContent = '<html><head><title>Add to Favs</title></head><body bgcolor="#FFCC00" link="#CC3399"><center><font face="arial" size=4><b>Close this window then Press Ctrl + D<br><br><a href="java script:window.close()">OK</a></b></font></center></body></html>'
newWin.document.write(newContent)
newWin.document.close()
}
}
</script>
And then the hyperlink for the button or text link:
java script:addFav()
But you can't worry about how you want the default title for the bookmark to be if you want to have an effective search engine marketing campaign.