 var xml = new AJAX();
 xml.metoda = "POST";
 xml.async = true;
 xml.zwrotna = function(odp){
 	if(odp==0){
 		document.getElementById("info").innerHTML = "Nie udało się wysłać wiadomości! Spróbuj później.";
 	}
 	else document.getElementById("info").innerHTML = "Wiadomość wysłana. Postaramy się odpowiedzieć jak najszybciej.";
 }
 function wyslij(){
 var f = document.forms.dealer;
 if(f.nadawca.value.length < 5)return alert("Podpisz się!");
 if(f.mail.value.indexOf('@')<1)return alert("Podaj poprawny adres e-mail!");
 if(f.wiadomosc.value.length<20)return alert("Podaj opis Twojej propozycji!");
 	xml.przeslij('include/mail.php','temat=Wiadomość z formularza: Dealer KOI&nadawca='+document.getElementById("mail").value+
 		"&wiadomosc=Hej! "+document.getElementById("nadawca").value + " wypełnił formularz Dealera KOI na Twojej stronie. Oto jego dane:\n\n"+
		document.getElementById("nadawca").value + "\n"+
		document.getElementById("mail").value + "\n"+
		(document.getElementById("telefon").value.length?"tel: "+document.getElementById("telefon").value:'')+"\nOpis propozycji: "+
		document.getElementById("wiadomosc").value+
		"\n\nAby się z nim skontaktować - odpowiedz na tego maila.\nWiadomość wysłana automatycznie.");
 	document.getElementById("info").innerHTML = "Wysyłam wiadomość...";
 	//alert(document.getElementById("wiadomosc").value);
 }
