function zdjecie(src)
{
window.open("zdjecie.php?p="+src,'','width=100, height=50, top=10, left=10, resizable=yes');
//	window.open("zdjecie.php?p="+src,'','width='+width+', height='+height+', top='+top+', left='+left+', resizable=yes');

}

function blinkPopup(x) {
	p = document.getElementById('popup').style;
	if (x==1) {
		col = "#000064";
		bg = "blue";
		fc = "yellow";
	}
	else {
		col = "#00008C";
		bg = "gray";
		fc = "red";
	}
	p.borderColor = col;
//	p.background = bg;
//	p.color = fc;
	x = (x + 1) % 2;
	setTimeout("blinkPopup("+x+")",200);
}
	
	
function startpopup() {
	document.getElementById('pop-close').style.display = "block";
	document.getElementById('pop-content').style.display = "block";	
}
