/**
 * @author Admin
 */

	function CreateBookmarkLink() {

		var title = "Cestovní kancelář Mauthner - Specialista na Rakousko "; 
		// Blogger - Replace with <$>
		// MovableType - Replace with <$>

		var url = "http://www.mauthner.cz"; //  "<?= $this->domain_url ?>";

		if ((typeof window.sidebar == 'object') && (typeof window.sidebar.addPanel == 'function')) 
		{ // Mozilla Firefox Bookmark
			//window.sidebar.addPanel(title, url,"");
			return true;
		}
		else if( window.external )
		{ // IE Favorite
			window.external.AddFavorite(url, title);
			
			return false;
		}
		else if(window.opera && window.print)
		{ // Opera Hotlist
			
			/*
		    linkObj.title = title;
			linkObj.href = url;*/
		    return true;
	
		}

	}