function setNSHomepage(URL) {  // this HAS to be signed if it is to run on the web
        var Text = 'Ваш броузер не позволяет автоматически добавить эту страницу в избранное. Добавте в избрвнное эту страницу вручную.';

        if (confirm(Text)) {
                        netscape.security.PrivilegeManager.enablePrivilege("UniversalPreferencesWrite");
                  navigator.preference('browser.startup.homepage',URL);
        }
}

function preSetHome(lnk){
        HomePage = top.location.href;
        if (document.layers) {
                setNSHomepage(HomePage);
        } else if (document.all) {
                 lnk.style.behavior='url(#default#homepage)';
                 lnk.setHomePage(HomePage);
        } else {
                alert('Ваш броузер не позволяет автоматически устанавливать эту страницу стартовой. Установите данную страницу вручную.');
        }
        return false;
}

function setBookmark() {
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(document.title, location.href, "");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite(location.href, document.title);
	} else if(window.opera && window.print) { // Opera Hotlist
		return true; 
	}
}
