// Добавить в Избранное 
function add_favorite(a, favtitle) { 

    if (favtitle=="") {
    	title=document.title;
    }
	else {
    	title = favtitle;
	}
    url = document.location;

	try { 
		// Internet Explorer 
		window.external.AddFavorite(url, title); 
	}
	catch (e) { 
		try { 
			// Mozilla 
			window.sidebar.addPanel(title, url, ""); 
		}
		catch (e) { 
			// Opera 
			if (typeof(opera)=="object") { 
				a.rel="sidebar"; 
				a.title=title; 
				a.url=url; 
				return true; 
			}
			else { 
				// Unknown 
				alert('Нажмите Ctrl-D чтобы добавить страницу в закладки'); 
			} 
		} 
	}
	return false; 
}
