﻿
		function createBookmarkLink(url, title) {
		try {
			if (window.sidebar) { // Mozilla Firefox Bookmark
				return window.sidebar.addPanel(title, url, "");
			} else if( window.external ) { // IE Favorite
				return window.external.AddFavorite( url, title); 
			} else if(window.opera && window.print) { // Opera Hotlist
				return true; 
			}
		} catch(err) {
			// do nothing
		}
		alert('Ve vašem prohlížeči se nepodařilo automaticky přidat odkaz mezi oblíbené.\n\n Přidejte si proto prosím odkaz na www.prerovan.cz ručně \n');
		}

		function writeBookmarkLink(url, title, class) {
		try {
			if (window.sidebar) { // Mozilla Firefox Bookmark
				return document.write('<a class="' + class + '" href="javascript:createBookmarkLink(\'' + url + '\', \'' + title + '\')");">Přidat do oblíbených</a>'); 
			} else if (window.external) { // IE Favorite
				return document.write('<a class="' + class + '" href="javascript:createBookmarkLink(\'' + url + '\', \'' + title + '\')");">Přidat do oblíbených</a>'); 
			} else if (window.opera && window.print) { // Opera Hotlist
				return document.write('<a class="' + class + '" rel="sidebar" href="' + url + '" title="' + title + '">Přidat do oblíbených</a>');
			} 
		} catch(err) {
		// do nothing
		}
		return document.write('To return to ' + title + ' create a bookmark to: <a style="color: white;" href="' + url + '">' + url + '</a>');
		}