function OpenPicGallery(picSrc){
   window.open("/photo.php?file=./galerie/"+picSrc+".jpg", 'picture', 'width=300,height=200,resizable=1');
}

function OpenPic(picSrc){
   window.open("/photo.php?file="+picSrc+".jpg", 'picture', 'width=300,height=200,resizable=1');
}

function resizeWin(){
  p_divAlert                 = document.getElementById("DivVeta");
  p_divAlert.style.display   = 'none';
  p_divAlert.style.visibility   = 'hidden';
  p_divPicture               = document.getElementById("DivObrazek");
  p_divPicture.style.display = 'block';
  p_divPicture.style.visibility = 'visible';

  p_pic = document.getElementById("obrazek");
  window.resizeTo(p_pic.width+30, p_pic.height+70);
  window.focus();
}

