function addbookmark() {
	bookmarkurl=window.location.href;
	bookmarktitle=document.title;

	if (window.external) {
		window.external.AddFavorite(bookmarkurl,bookmarktitle)
	} else {
		msg = "Your browser does not support this feature.  If you are using Netscape Navigator\n";
		msg = msg + "Click \"Bookmarks\" and then \"Add Bookmark\"  or type \"Ctrl+D\" to add this site to your favorites.";
		alert(msg);
	}
}


	function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}