This is a small tutorial to make a bookmark link for your site. Just insert the following codes. This tutorial is not mine, i have got it from some other site, but now i forgot the name of the site.
Insert this into the head
Code:
<script language="JavaScript">
<!--
var bookmarkurl="http://www.yousite.com"
var bookmarktitle="Your site title"
function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
//-->
</script>
Insert in the body where you want to display the link to book mark
Code:
<script>
if (document.all)
document.write('<a href="javascript:addbookmark()">Click here to Bookmark this site!</a>')
</script>