<!-- 
// 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"><B>Bookmark This Site</B></font></a>');

// if any other browser 

//change Your Site to your site name.

else {
var msg = "<font size='1'><B>Bookmark This Site (CTRL-D)</B></font>";

document.write(msg);
}

// -->