function addBookmark()
{
  url = "http://www.fototema.ru";
  title = "«ФОТОТЕМА»: любая ТЕМА о ФОТО" ;
 
 //Gecko
 if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function"))
   window.sidebar.addPanel (title, url, "");

 //IE4+
 else if (typeof window.external == "object")
   window.external.AddFavorite(url, title);

 //Opera7+
 else if (window.opera && document.createElement)
 {
   var a = document.createElement('A');
   if (!a) return false; //IF Opera 6
   a.setAttribute('rel','sidebar');
   a.setAttribute('href',url);
   a.setAttribute('title',title);
   a.click();
 }

 //Other
 else
 {
   alert('Ваш браузер не поддерживает автоматическое добавление закладок.');
  // return false;
 }
 
 //return true;
}

