﻿function addToFavorites(){
	if (typeof window.external != "undefined" && navigator.userAgent.indexOf("MSIE") != -1) {
		window.external.AddFavorite(document.URL, document.title);
	} else if (typeof window.opera != "undefined") {
		alert("Aby dodać stronę do ulubionych wybierz CTRL+D");
	} else {
		alert("Aby dodać stronę do ulubionych wybierz CTRL+D");
	}
	return false;
}
