﻿addBookmark = function(url, title)
{
  if (!url) url = location.href;
  if (!title) title = document.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();
  }
  else return false;
  
  return true;
}

setAsHome = function(myLink)
{
    if(document.all) {
        myLink.style.behavior='url(#default#homepage)';
        myLink.setHomePage(location.href);
    } else {
        document.getElementById("setHomeToolTip").style.display = "";
        setTimeout("hideShowSetHome()",4000);
    }
}

hideShowSetHome = function()
{
    document.getElementById("setHomeToolTip").style.display = "none";
}

setMode = function() {
    if (document.getElementById("_sweb").className == "sel") {
        document.getElementById("_stxt").name = "k";
        document.forms["formSearch"].target = "_blank";
        document.forms["formSearch"].action = "http://search.oboz.ua";
    }
    else {
        document.forms["formSearch"].target = "_self";
        document.forms["formSearch"].action = "/searchonsite.htm";
    }
}
