function OpenPic(picSrc){
   window.open("/Photo.php?file="+picSrc, 'picture', 'width=300,height=200,resizable=1');
} 
function resizeWin(){
	p_divAlert                 = document.getElementById("DivVeta");
	p_divAlert.style.display   = 'none';
	p_divPicture               = document.getElementById("DivObrazek");
	p_divPicture.style.display = 'block';
	
	p_pic = document.getElementById("obrazek");
	window.resizeTo(p_pic.width+30, p_pic.height+70);
	window.focus();
}