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 rozwin(elem, from)
{
	if (document.getElementById(elem).style.display == 'none') {
		document.getElementById(elem).style.display = 'block';
		document.getElementById(from).className = 'selected';		
	}  else
	{    
		document.getElementById(elem).style.display = 'none';
		document.getElementById(from).className = '';				
	}
		
}
