function addbookmark(url, title){
	if (document.all) {
		window.external.AddFavorite(url,title)
	}
	else {
		alert("Please, press OK and then Ctrl+D to bookmark this site.")
	}
}
