    function SetBookmarkPage()
    {
       if (window.opera && window.print)
       {
          alert('Apasati Ctrl D');
          return;
       }

       if (window.sidebar)
       {
         window.sidebar.addPanel(document.title,top.location.href + "#bookmark","");
       }
       else if (document.all)
       {
         window.external.AddFavorite(top.location.href + "#bookmark",document.title);
       }

       return;
    }

    function SetHomePage(obj)
    {
      if (document.layers)
      {
         netscape.security.PrivilegeManager.enablePrivilege("UniversalPreferencesWrite");
         navigator.preference('browser.startup.homepage',top.location.href);
      }
      else if (document.all)
      {
         obj.style.behavior='url(#default#homepage)';
         obj.setHomePage(top.location.href);
      }
      else
      {
      }
    }

