  function open_window(url,new_win_width,new_win_height) {
   var new_win=null;
   new_win=window.open("","",
                       "location=no,toolbar=no,width="+new_win_width+
                       ",height="+new_win_height+",directories=no,status=no,"+
                       "scrollbars=no,resizable=no,menubar=no");
   new_win.location.href=url;

  }


  function zamknij_okno() {
   close();
  }

  function reset() {
   document.getElementById("email").value="";
   document.getElementById("imie").value="";
   document.getElementById("temat").value="";
   document.getElementById("tresc").value="";
   }

function wyslij() {
	if(validate()) { // sprawdzanie poprawnosci pol
      document.getElementById("formularz").submit();
	}
  }
   // Global functions
function empty_string(what) 
{ 
 if (what == "")
  return true;
 else
  return false;
}

function valid_email(what) 
{
 if (empty_string(what)) {
  return false;
 }
 var reg = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
        return reg.test(what);
}

// Main validation function
function validate()
{
  var rt = true;
  d = document.getElementById("tresc_error");
  d.innerHTML="";
  d = document.getElementById("temat_error");
  d.innerHTML="";
  d = document.getElementById("imie_error");
  d.innerHTML="";
  d = document.getElementById("email_error");
  d.innerHTML="";

  if(empty_string(document.getElementById('tresc').value))
  {
   //alert("Proszę wpisać treść wiadomości.");
   d = document.getElementById("tresc_error");
   d.innerHTML="Podaj treść.";
   document.getElementById('tresc').focus();
   document.getElementById('tresc').select();
   rt = false;
  }
  if(empty_string(document.getElementById('temat').value))
  {
   //alert("Proszę wpisać temat wiadomości.");
   d = document.getElementById("temat_error");
   d.innerHTML="Podaj temat.";
   document.getElementById('temat').focus();
   document.getElementById('temat').select();
   rt = false;
  }
  if(empty_string(document.getElementById('imie').value))
  {
   //alert("Proszę wpisać imię i nazwisko.");
   d = document.getElementById("imie_error");
   d.innerHTML="Podaj imię i nazwisko.";
   document.getElementById('imie').focus();
   document.getElementById('imie').select();
   rt = false;
  }
  if(empty_string(document.getElementById('email').value))
  {
  // alert("Proszę wpisać adres e-mail.");
   d = document.getElementById("email_error");
   d.innerHTML="Podaj adres e-mail.";

   document.getElementById('email').focus();
   document.getElementById('email').select();
   rt = false;
  }
   // sprawdz poprawnosc adresu email
  else if(!valid_email(document.getElementById('email').value)) 
  {
     //alert("Podany adres e-mail '" + document.getElementById('email').value + "' nie jest poprawny. Proszę spróbować jeszcze raz.");
	 d = document.getElementById("email_error");
     d.innerHTML="Błędny e-mail.";
     document.getElementById('email').focus();
     document.getElementById('email').select();
	 rt = false;
  } 

 return rt;
 
}

