<!-- Script to provide cross-browser bookmark/favourites facility -->
function addBookmark(title,url) { 
if (window.sidebar) { 
window.sidebar.addPanel(title, url,""); 
} else if( document.all ) { 
window.external.AddFavorite( url, title); 
} else if( window.opera && window.print ) { 
return true; 
} 
} 
<!-- add this code in <body> where bookmark appears....
<!-- <a title="CLICK HERE to add this page to your favourites" href="#" onmousedown="addBookmark('WalmerWeb community website','http://www.walmerweb.co.uk/index.html')" class="link3">Bookmark this page</a> 
-->