Hi there Saz,
and a warm welcome to these forums. 
Does this help...
some_page.html
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>bookmark dynamicdrive forums</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript" src="bookmark.js"></script>
</head>
<body>
<ul>
<li><a class="bookmark" href="http://www.dynamicdrive.com/forums/" title="dynamicdrive forums">dynamicdrive forums</a></li>
<li><a href="http://www.w3schools.com/" title="w3schools">w3schools</a></li>
</ul>
</body>
</html>
boomark.js
Code:
window.onload=function() {
anc=document.getElementsByTagName('a');
for(c=0;c<anc.length;c++) {
if(anc[c].className=='bookmark') {
anc[c].onclick=function() {
if(document.all) {
window.external.AddFavorite(this.href,this.title);
}
else {
if(window.sidebar) {
window.sidebar.addPanel(this.title,this.href,'');
}
}
}
}
}
}
coothead
Bookmarks