	function render_boletin(){
	$0('b1'); $0('b2'); $1('b3');
	if (http_request.readyState == 4) {		
        if (http_request.status == 200) {
			//alert(http_request.responseText);
			$0('b1'); $1('b2'); $0('b3');
		setTimeout('document.location.reload()',3);
		} else {
            alert('Hubo problemas con el envio de la informaci\xf3n por favor vuelva a intentarlo.');
		setTimeout('document.location.reload()',1);
        }
    }
}	

function press_boletin(tecla){
if (tecla == 13)  { enviar_boletin(); }
}


function validar_registro()
{	
	if($(nombreb).value=="")
	{alert("Debe ingresar su nombre");	$(nombreb).focus(); return false;}
	else if($(emailb).value=="")
	{alert("Debe ingresar su email");	$(emailb).focus(); return false;}
	else
	{return true;}
}


function enviar_boletin(){

if(validar_registro()){

pedir(remoto+'formularios/boletin_envio.php?'+
'email='+$(emailb).value+
'&nombre='+$(nombreb).value+
'&distrito='+$(distritob).value+
'&ajax=ran','render_boletin');

} 

}