function addEmail(){
		
		var sQueryString = $('#formNewsletter').formSerialize();
		
		$.ajax({
				type: 'POST',
				url: 'index.php',
				dataType : 'xml',
				data: 'sModul=mnewsletter&sAction=addCheck&'+sQueryString,
				success: function(oXml){
						if($(oXml).find('Content').text()){
								$("#pojNewsletter").html(($(oXml).find('Content').text()));
						}
				}
	});
}

function delEmail(){
		
		var sQueryString = $('#formNewsletter').formSerialize();
		
		$.ajax({
				type: 'POST',
				url: 'index.php',
				dataType : 'xml',
				data: 'sModul=mnewsletter&sAction=delCheck&'+sQueryString,
				success: function(oXml){
						if($(oXml).find('Content').text()){
								$("#pojNewsletter").html(($(oXml).find('Content').text()));
						}
				}
	});
}
