	function podmiana(co, ile) {
		//var ile = document.getElementById("wybor").options.length;
		for(var i=1; i<=ile; i++) {
			var ktora = "w"+i;
			if(ktora == co) {
			document.getElementById(ktora).style.display = "block";
		}
		else 
			if(ktora != co) {
				document.getElementById(ktora).style.display = "none";
			}
		}
	}


function zdjecie(src) {
	window.open("zdjecie.php?p="+src,'','width=700, height=600, top=10, left=10, resizable=yes, scrollbars=no, toolbars=no, status=yes');
}


