function zobraz_fotografii(picture) { // funkce pro zobrazovani vetsich obrazku v novych oknech.
  var url = '/obraz.php?image='+picture;
  window.open(url,'WIN','scrollbars=1,status=no,toolbar=no,resizable=1,location=no,menu=no,width=100,height=100');
}

function zkontroluj_formular(alertOne, alertTwo, alertThree) { // funkce pro zobrazovani vetsich obrazku v novych oknech.
  var hodnota, regular; 

  hodnota = document.getElementById("mail").value;
  regular = /^.+@.+\..{2,4}$/;
  
  if (regular.test(hodnota) == false) {
  	alert(alertOne);
  	return false;
  }
  
  hodnota = document.getElementById("jmeno").value;
  regular = /^[A-Za-z]+/;
  
  if (regular.test(hodnota) == false) {
  	alert(alertTwo);
  	return false;
  }
  
  hodnota = document.getElementById("adresa").value;
  regular = /^[A-Za-z0-9]+/;
  
  if (regular.test(hodnota) == false) {
  	alert(alertThree);
  	return false;
  }
  
  return true;
}