

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!='')&&($(horal).value!='')&&($(telefonol).value!='')){

pedir('formularios/llamada_envio.php?'+

'email='+$(emaill).value+

'&nombre='+$(nombrel).value+

'&telefono='+$(telefonol).value+

'&hora='+$(horal).value+

'&distrito='+$(distritol).value+

'&ajax=ran','render_llamada')

} else {

alert('por favor escriba su nombre, su email, su telefono y la hora a la que desea que lo llamemos y despues haga clic en ok.');

}

}
