<!-- 
// Place this script into your HTML document where you 
// wish the bookmark link/reminders to appear

// if browser is IE 4+ :
if (document.all)
document.write('<a href="javascript:addpagebookmark()" Class="special"><B>Bookmark this page</B></a>');

// if any other browser 
//change Your Site to your site name.

else {
var msg = "<font size='1' face='arial'><B>Bookmark this page (CTRL-D)</B></font>";
document.write(msg);
}
// -->