﻿// Archivo JScript
function showKeyCode(e, textbox) {
    
    //cuando el usuario presione la tecla enter, llamamos a la función de buscar
    if(e.keyCode == 13)
    { 
    
        /*
        var ruta = '/Fuhem/resultados_busqueda.aspx?b=' + document.getElementById(textbox).value;
        var theForm = this.document.aspnetForm;

        theForm.action = ruta; 
        theForm.submit();
        */
        
        document.getElementById("hEnter").value = "1";
        return true;
    }
}