function otworz_obrazek(obrazek,width,height,o)
{
  var obrazek,width,height;
  var Win= window.open(obrazek,o, 'toolbar=0, status=0, directories=0,menubar=0,location=0,scrollbars=0,resizable=0,left=0,top=0,width='+width+',height='+height);
}

function zamknij_okno(id_testu) {
  id_testu="";
  window.close();
}

function Galeria() 
{
  var obrazek,width,height;
  var Win= window.open('galeria/galeria.php','','toolbar=0, status=0, directories=0,menubar=0,location=0,scrollbars=0,resizable=0,left=0,top=0,width=450,height=360');
 	Win.moveTo(0,0);
	Win.focus();
}

function puste(pole, nazwa)
{
  if (!pole.value) 
  {
    alert("Pole '"+nazwa+"' musi być wypełnione!");
    return false;
  }
  return true;
}

function email(pole, nazwa)
{
  pattern = /^[0-9a-z._-]+(@|\(at\))+[0-9a-z._-]+\.[a-z]{2,3}$/i;
  if (!pattern.test(pole.value) || pole.value.length < 6) 
  {
    alert("Podany adres e-mail jest nieprawidłowy!");
    return false;
  }
  return true;
}

function sprawdzenie()
{
  result = true;
  if (result) result = puste(document.formularz_kontaktowy.nadawca,"imię nazwisko");
  if (result) result = email(document.formularz_kontaktowy.mailnadawcy,"e-mail");
  if (result) result = puste(document.formularz_kontaktowy.wiadomosc,"wiadomość");
  return result;
}
