	function pokaz_okno(){
		_gdzie = document.getElementById('overlay');
			if(_gdzie.style.display=='none'){
			if(_gdzie2 = document.getElementById("ov")){
				_gdzie2.style.display="block";
				_gdzie.style.display="block";
			}else{
				_gdzie.style.display="table";
				}
			}else{
			if(_gdzie2 = document.getElementById("ov")){
				_gdzie2.style.display="none";
				_gdzie.style.display='none';
			}else{
				_gdzie.style.display='none';
			}}
		}
		
		function check_del(link,tekst){
				var teksty = Array();
		teksty[0] = 'Czy na pewno chcesz usunać tę osobę z grona Twoich znajomych?';
		teksty[1] = 'Na pewno chcesz przystapic do tej grupy';
		teksty[2] = 'Czy na pewno chcesz usunać obecne logo swojej grupy?';
		teksty[3] = 'Czy na pewno chcesz usunać tego użytkownika?';
		teksty[4] = 'Czy na pewno chcesz usunać tą pracę ze swoich doświadczeń zawodowych?';
		_gdzie = document.getElementById("inner");
	
			_gdzie.innerHTML = "<p>"+teksty[tekst]+"</p>";
				
		var but = document.createElement('input');
		but.setAttribute('value', 'Tak');
		but.setAttribute('type', 'button');
		but.onclick = function(){window.location=link}
		var but2 = document.createElement('input');
		but2.setAttribute('value', 'Nie');
		but2.setAttribute('type', 'button');
		but2.onclick = function(){pokaz_okno()};
		var formularz = document.createElement('form');
		formularz.appendChild(but);
		formularz.appendChild(but2);
		_gdzie.appendChild(formularz);
		pokaz_okno();
}

function okno_informacyjne(tekst){
				var teksty = Array();
		teksty[0] = 'Jeżeli chcesz dołączyć do grupy musisz być zalogowany. Kliknij <a href="login.php">ZALOGUJ SIĘ</a> lub OK aby wrócić do strony.';
		_gdzie = document.getElementById("inner");
	
			_gdzie.innerHTML = "<p>"+teksty[tekst]+"</p>";
				
	
		var but2 = document.createElement('input');
		but2.setAttribute('value', 'Ok');
		but2.setAttribute('type', 'button');
		but2.onclick = function(){pokaz_okno()};
		var formularz = document.createElement('form');
		formularz.appendChild(but2);
		_gdzie.appendChild(formularz);
		pokaz_okno();

}
