
function dodaj() {

		var tytul = 'FABA S.A.';
		var adres = 'http://www.faba.pl';

		if (window.sidebar) {

			window.sidebar.addPanel(tytul, adres, "");

		} else if (window.external) {

			window.external.AddFavorite(adres, tytul);

		} else if (window.opera && window.print) {

			var a = document.createElement('a');

				a.setAttribute('href', adres);
				a.setAttribute('title', tytul);
 				a.setAttribute('rel','sidebar');
  				a.click();
 		 }
   }
