// JavaScript Document
function ukryj(cos,id) {
	document.getElementById(cos).style.display = document.getElementById(cos).style.display == 'block' ? 'none' : 'block';
	document.getElementById(id).innerText = document.getElementById(id).innerText == 'zwin' ?  'wiecej': 'zwin' ;
	document.getElementById(id).textContent = document.getElementById(id).textContent == 'zwin' ? 'wiecej' : 'zwin';
}

function menu(cos,kolor) {
document.getElementById(cos).style.display = document.getElementById(cos).style.display == 'none' ? 'block' : 'none';
document.getElementById(kolor).style.color = document.getElementById(kolor).style.color == 'black' ? 'red' : 'black';
}

function podpis(obrazek,nazwa){
document.getElementById('pojemnik').src = obrazek;
document.getElementById('opis').innerText = nazwa;
document.getElementById('opis').textContent = nazwa;
}
function popup(url){
	if (navigator.appName == 'Microsoft Internet Explorer'){
		window.open(url,'','directories=0, menubar=0, toolbar=0, location=0, scrollbars=0, resizable=0, status=0, Width=636, Height=476');}
		else{
     window.open(url,'','chrome=no, personalbar=no, directories=0, menubar=0, toolbar=0, locationbar=0, scrollbars=0, resizable=0, status=0, Width=640, Height=480');
}
}

