// JavaScript Document

			var addBookmark = function(elt) {
				 elt.onclick = function() {
				   if (document.all) window.external.addFavorite(window.location.href, document.title);
				   else if (window.sidebar) window.sidebar.addPanel(document.title, window.location.href, "");
				 };
	
			 };
			 
			addBookmark(document.getElementById("bookmark"));
