function waliduj(){
var validValue = 1;
var text = "";
var strEmail = document.getElementById("email").value;
var pustePole = 1;
  validRegExp = /^[^@]+@[^@]+.[a-z]{2,}$/i;   

   // search email text for regular exp matches
    if (strEmail.search(validRegExp) == -1) 
   {
      text += "zły adres email<br />";
      validValue = 0;
    } 
    
    if(document.getElementById('imie_nazwisko').value == "" || document.getElementById('imie_nazwisko').value == " ")
    {
	text += "podaj imię i nazwisko lub nazwę swojej firmy<br />";
    pustePole = 0;
    validValue = 0;
    }
    if(document.getElementById('oferta_form').value == "" || document.getElementById('oferta_form').value == " ")
    {
	text += "wpisz treść wiadomości";
    pustePole = 0;
    validValue = 0;
    }
    
    if(pustePole == 0) 
    {
	var myAlert = new SexyAlertBox();
    myAlert.error(text);
	
    }
    
    if (validValue == 1) {
    document.getElementById('id_oferta_form').action = location.href;
    document.getElementById('id_oferta_form').submit();
    } 
}

