
//kontrola formularza kontaktowego
function kontrola()
{
  if (document.Formularz.NazwiskoImie.value == "")
  {
    alert("Wpisz imię i nazwisko.");
    return;
  };
	
 /*if (document.Formularz.adres.value == "")
  {
    alert("Proszę podać pełny adres firmy.");
    return;
  }; */
	
		  
 if (document.Formularz.Telefon.value == "")
  {
    alert("Wpisz numer telefonu.");
    return;
  };
	
	
 if (document.Formularz.TrescWiadomosci.value == "")
  {
    alert("Wpisz treść wiadomości.");
    return;
  };
 
  document.Formularz.submit();

}
