Add Javascript code to your page that allows the visitors to bookmark it. Just replace
example_url with the actual URL of your page and example_title with the page title.
if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion)
>= 4)) {
var url="example_url";
var title="example_title";
document.write('<A HREF="javascript:window.ext');
document.write('ernal.AddFavorite(url,title);" ');
document.write('onMouseOver=" window.status=');
document.write("'Add this page to your favorites'; return true ");
document.write('"onMouseOut=" window.status=');
document.write("' '; return true ");
document.write('">Bookmark this page</a>');
}
else {
var msg = "Bookmark this page";
if(navigator.appName == "Netscape") msg += " (CTRL-D)";
document.write(msg);
}
|