function buscarEnterPortada(oEvento, oFormulario, idioma, valor, BuscarEn){ 
var tecla;
if(window.event){
tecla = window.event.keyCode;
}else{
tecla = oEvento.keyCode
}
if (tecla == 13)
{
window.location.href = "/" + idioma + "/buscador/default.aspx?query="+ valor+"&mip=96&buscarEn="+BuscarEn;

if(window.event){
          window.event.cancelBubble = true;
          window.event.returnValue = false;
}else{
oEvento.preventDefault();
}
}
}

function buscarEnterReceta(oEvento, oFormulario, idioma, valor, BuscarEn){ 
var tecla;
if(window.event){
tecla = window.event.keyCode;
}else{
tecla = oEvento.keyCode
}
if (tecla == 13)
{
window.location.href = "/" + idioma + "/conoce_lo_que_comes/tus_recetas/buscador.aspx?query="+ valor;

if(window.event){
          window.event.cancelBubble = true;
          window.event.returnValue = false;
}else{
oEvento.preventDefault();
}
}
}

function mouseOnQuery(textoQuitar, valor){ 

if (valor == textoQuitar)
{
return "";
}
else
{
return valor;
}
}
