function checkEnviarFormularioBuscador(e,el_input){
	var key=e.keyCode || e.which;
	if (key==13){
		enviarFormularioBuscador(el_input);
	}
}function enviarFormularioBuscador(el_input){	el_input=$(el_input);	var texto=el_input.value;	while(texto.indexOf("  ")!=(-1)){		texto=texto.replace("  "," ");	}	texto=escape(texto);	texto=texto.replace("+","%2B");	texto=texto.replace("/","%2F");	texto=texto.replace("@","%40");	window.location='http://satirarpg.com/'+the_locale+'/search/'+texto+'.html';}
