cnfg_url = 'http://www.sposobnareklame.com/';

function wyslij(){
    advAJAX.post({ 
	    url: cnfg_url+"js/send_mail.php",
	    parameters : {
	      "email" : document.getElementById('email').value,
	      "imie" : document.getElementById('imie').value,
	      "wtekst" : document.getElementById('tekst').value
	    },
	    onLoading : function(obj){ 
			document.getElementById('send_mail').innerHTML="<img style='float:left;margin:10px 10px 10px 20px' src='"+cnfg_url+"pliki/ajax-loader.gif'/><br/><br/>";
	    },
	    onSuccess : function(obj) { 
			document.getElementById('send_mail').innerHTML = obj.responseText;
	    }});}
