function wyslij_newsletter()
{
//  dane01 = document.getElementById('nazwa').value;
  dane02 = document.getElementById('emailnews').value;

 bWyslij = document.getElementById('btnWyslij');
 bWyslij.disable=true;

//ustaw typ
  url = "mod_newsletter.php?co=wyslij";
//  url += "&nazwa="  +  dane01;
  url += "&email="  +  dane02;

  url=encodeURI(url);
//alert(url);
//------- stworz obiekt
  startGETRequest(url,  onCompleteN, onEndN);
}

function onEndN(){
bWyslij = document.getElementById('btnWyslij');
bWyslij.disable=false;
}

function onCompleteN(text, xml)
{  
  //zwroc komunikat i podziel go aby sprawdzic czy poprawny czy błąd
	  d = text.split(":");
  //jesli błąd to pokaz komunikat w formularzu	
  if(d[0] == "error"){
		  alert(d[1]);
//		document.getElementById('komunikatx').innerHTML= d[1];
    }
	else {
		//wyczysc pole komunikatu
		  alert(d[1]);
//		  document.getElementById('komunikatx').innerHTML= d[1];
	  //zwroc wiadomość po poprawnym przebiegu działania
		//  document.getElementById('pulpit').innerHTML= d[1];
		document.getElementById('emailnews').value="";
	}

}
