function addxBookmark(title, url, obj){
	if (!url) url = location.href;
	if (!title) title = document.title;
	if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function")) 
		window.sidebar.addPanel (title, url, "");
	else if (document.all) 
		window.external.AddFavorite(url, title);
	else if (window.opera && document.createElement) {
		obj.setAttribute('rel','sidebar');
		obj.setAttribute('href',url);
		obj.setAttribute('title',title);
	}
	else {
		alert("Для добавления в закладки нажмите ctrl+D");
		return false; 
	}
	return true;
}