<!-- 
// 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()"><font size="1" face="MS Sans Serif, Geneva, arial"><B>Click here to bookmark this page</B></font></a>');

// if any other browser 

//change Your Site to your site name.

else {
var msg = "<font size='1' face='MS Sans Serif, Geneva, arial'><B>Don't forget to bookmark this page (CTRL-D)</B></font>";

document.write(msg);
}

// -->
