// JavaScript Document
function testeza() {
	var email = $('#email').val();	
	
	$.get('./lib/ajax_news.php', {  
			mai:email  //variable de type GET (on récupèrera la variable avec $_GET[''])  
		}, function(data){}
	); 
	
	alert("Inscription effectuée.");
}
