

function render_llamada(){

	$0('l1'); $0('l2'); $1('l3'); 

        if (http_request.readyState == 4) {		

            if (http_request.status == 200) {

            //alert(http_request.responseText);

		$0('l1'); $1('l2'); $0('l3');

		setTimeout("pedir('formularios/llamada_formulario.html','render_l');",5000);

		  } else {

                alert('Hubo problemas con el envio de la información por favor vuelva a intentarlo.');

				setTimeout("pedir('formularios/llamada_formulario.html','render_l');",2000);

            }

        }

		}

		

function press_llamada(tecla){

if (tecla == 13)  { enviar_llamada(); }

}



function enviar_llamada(){
if(($(nombrel).value!='')&&($(emaill).value!='')&&($(telefonol).value!='')){
pedir('formularios/llamada_envio.php?'+
'email='+$(emaill).value+
'&nombre='+$(nombrel).value+
'&telefono='+$(telefonol).value+
'&distrito='+$(distritol).value+
'&ajax=ran','render_llamada')
} else {
alert('por favor escriba su nombre, su email, y su teléfono, después haga clic en ok.');
}

}