function addBookmark(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 ("zap99.ru", "http://zap99.ru", "");
    //IE4+
    else if (typeof window.external == "object") window.external.AddFavorite("http://zap99.ru", "zap99.ru");
    //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;
}


	function turnT(off, on)
	{
	    document.search.type_search.value=off;
	    document.getElementById('search_'+off).className = 'search_on';
	    document.getElementById('search_'+on).className = 'search_off';
	    return true;
	}

