function redireccion() {

    document.location.reload();

}		

function enviar_llamada()
{
	var email = $('#emaill').val();
	var nombre = $('#nombrel').val();
	var apellido = $('#apellidol').val();
	
	
	if(nombre=="")
	{alert("Debe ingresar su nombre");}
	else if(apellido=="")
	{alert("Debe ingresar su apellido");}
	else if(email=="")
	{alert("Debe ingresar su email");}
	else
	{

		var cad = '&email='+email+'&nombre='+nombre+'&apellido='+apellido;
			
		$.ajax({
			async:true,
			url: 'formularios/llamada_envio.php',
			data: cad,
			type: "POST",
			cache: false,
			dataType: "html",
			beforeSend: function(objeto){
				$('#e1').hide(); $('#e2').show(); $('#e3').hide(); 
			},
			success: function(rpta){		
				$('#e1').hide(); $('#e2').hide(); $('#e3').show();
				setTimeout('redireccion()',2000);
			}
		});
	
	}
 
}