Add this code to your page and when clicked it will help others to add your site to their favorites list.
Place this code into the head of your page:
<script language="JavaScript">
function bookmark(url, description)
{
netscape="Netscape User's hit CTRL+D to add a bookmark to this site."
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
alert(netscape);
}
}
//-->
</SCRIPT>
Place this in your body of your page where you want the link to appear:
<a href="javascript:bookmark('http://www.yourdomain.com','Name of your site');">Click here to add this site to your favorites list!</A>




