function makeHome(obj){
    if (navigator.userAgent.indexOf('MSIE ')>=0) {
      obj.style.behavior='url(#default#homepage)'; 
      obj.setHomePage(parent.document.location.href);
    } else
      alert('To make home page:\n\n1. Go to the web page you want to bookmark.\n\n2. Click Preferences in main menu.\n\n3. Find Home Page and choose Make Home Page.');
    return false;
  }

function bookMark() {
    if (navigator.userAgent.indexOf('MSIE ')>=0)
      window.external.addFavorite(parent.document.location.href, "Солом'янський район");
    else
      alert('To bookmark a web page:\n\n1. Go to the web page you want to bookmark.\n\n2. Click Bookmarks. On Mac OS, open the Bookmarks\nmenu--the green bookmark icon to the right of the Go menu.\n\n3. Choose Add Bookmark.');
    return false;
  }

