function news_ajax(){
	//$('#msg').hide();
	//$('#cargando').show();
	var email = $('#email').val();
	apos=email.indexOf("@");
	dotpos=email.lastIndexOf(".");
	if(apos<1 || dotpos-apos<2 || email==""){
		$('#email').focus();
		return;
	}
	$.ajax({
		type: 'POST',
		url: 'addmail.php',
		cache: false,
		data: 'email=' + email + '&ajax=1',
		success: function(h){
			//$('#cargando').hide();
			//$('#msg').show();
			//$('#msg').html(h);
			alert(h);
		},
		error: function(){
			alert('asdasdasd');
		}
	});
}
