function addbookmark(url, title)
{
bookmarkurl = url
bookmarktitle = title

alert("we're in the bookmark function: url: "+ url + " title:" + title)

if (document.all)
	window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
