You forgot to put the script on the page:
Code:
<script type="text/javascript">
/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
</script>
You have the call for the script, but the script is not there. It belongs in the head of the document. Anywhere in the head is good but, if you are having trouble deciding, put it right between these two tags:
</style>
</head>
Bookmarks