var validMail=/^[a-zA-Z0-9._-]+\@([a-zA-Z0-9_-]+\.){1,}[\w]{1,5}$/;

$(document).ready(function(){

    $("input#dodaj2").click(function()
	{
		var adres = document.getElementById("email2").value;

		if (adres.search(validMail) == -1) {
			alert("Podaj poprawny adres e-mail");
			return false;
		}

        document.getElementById("newsletter2").style.backgroundPosition = '0 20px';
		document.getElementById("newsletter2").innerHTML = '<div style="padding-left:22px;padding-top:22px;font-weight:bold">Trwa dodawanie adresu...</div>';
		$("div#newsletter2").load("../../dodaj-email.php?adres="+adres,function(){
            document.getElementById("newsletter2").style.backgroundPosition = '-99px -99px';
        });

	});


    $("input#dodaj").click(function()
	{
		var adres = document.getElementById("email").value;

		if (adres.search(validMail) == -1) {
			alert("Podaj poprawny adres e-mail");
			return false;
		}

        document.getElementById("newsletter1").style.backgroundPosition = '0 21px';
		document.getElementById("newsletter1").innerHTML = '<div style="padding-left:22px;padding-top:22px;font-weight:bold">Trwa dodawanie adresu...</div>';
		$("div#newsletter1").load("../../dodaj-email.php?adres="+adres,function(){
            document.getElementById("newsletter1").style.backgroundPosition = '-99px -99px';
        });

	});

    $("input#wyslij").click(function()
    {
           var fo = document.f;
           var blad = "";
           if(fo.imie.value=="") blad += "- Podaj imię\n";
           if(fo.nazwisko.value=="") blad += "- Podaj nazwisko\n";
           if(fo.nazwa.value=="") blad += "- Podaj nazwę firmy\n";
           if(fo.email.value=="") blad += "- Podaj adres e-mail\n";
           if(fo.email.value.search(validMail) == -1) blad += "- Podaj poprawny adres e-mail\n";
           if(fo.tresc.value=="") blad += "- Podaj treść wiadomości\n";
           if(blad)
           {
               alert("Popraw dane:\n\n"+blad);
               return false;
           }
           return true;
    });
    
});