Inserting an "Add to favorites" link

In order to let your readers add your blog to their list of favorite sites in Explorer (also called "bookmarking"), simply add the correct code to the <head> section of your template, anywhere in between these elements:

<HEAD></HEAD>

This is the code to paste into your template:

<script language="JavaScript1.2">
var bookmarkurl="http://yourblog.motime.com"
var bookmarktitle="blogname"
function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
</script>

You should enter the name of your blog as you would like it to appear in the list of favorites, even if it differs from your actual Web address, but the URL in the http string must be exact.

Finally, paste the following tag into the place on your template where you would like the "Add to favorites" link to appear:
<a>Add<acronym title="HyperText Markup Language">blogname</acronym> to my favorites<br></a>