/**
Używaj tego tak:
	<a href="#" onclick="return makeBMark('{$smarty.const.NAZWA_FIRMY}', 'http://{$smarty.server.HTTP_HOST}{$smarty.server.PHP_SELF|@dirname}')"; class="text" title="{$smarty.const.NAZWA_FIRMY} - Strona główna" rel="sidebar">dodaj do ulubionych</a> |
*/
function makeBMark(title,url)
{
	try {
		
		if( window.opera)
		{
			
			return true;
		} 
		else if (window.sidebar)
		{
			
			window.sidebar.addPanel(title, url,"");
			return false;
			//alert("Firefox users: This link will open in your Sidebar\nrather than the main page!\nTo prevent this please right click the link and choose\n'Properties' and then uncheck the box marked:\n'Load This Bookmark in the Sidebar'\n\nSorry about this, but it is unavoidable with Firefox");
	
		}
		else throw("ie");
	}
	
	catch(e) 
	{
		
		window.external.AddFavorite( url, title);
		return false;
	}
}


//window.external.AddFavorite('http://www.yoursite.com', 'Your Site Name')