function toFavorite(Ftitle, Furl)
{
	if( window.sidebar && window.sidebar.addPanel ) 
	{ 
		window.sidebar.addPanel( Ftitle, Furl, '' ); 
	} else if( window.external && ( navigator.platform == 'Win32' || ( window.ScriptEngine && ScriptEngine().indexOf('InScript') + 1 ) ) ) 
	{ 
		window.external.AddFavorite( Furl, Ftitle ); 
	} else if( window.opera ) { 
		 window.alert( 'Naciśnij klawisze Ctrl+D aby dodać stronę do zakładek.' ); 
	} else { 
		 window.alert( 'Proszę użyć funkcji dodawania do zakładek dostępnej w przeglądarce internetowej.' ); 
	} 
}

function change_photo(num)
{
	if (num == 1)	document.getElementById("image").src = "images/my-1.jpg";
	if (num == 2)	document.getElementById("image").src = "images/my-2.jpg";
	if (num == 3)	document.getElementById("image").src = "images/my-3.jpg";	
}
