var newsLetter = function() {
	this.alertDiv = false;
	this.url = "/?page=newsletterClub&akcja=zapisz";

	this.send = function(email){
		var params = '&email=' + escape(email);
		this.call.alertDiv = this.alertDiv;
		YAHOO.util.Connect.asyncRequest("GET", this.url + params, this.call);
	}

	this.call={
		success:function(o){
			this.alertDiv.style.display = "block";
			this.alertDiv.innerHTML = o.responseText;
		},
		failure:function(){
		}
	}
}
