  function link_submit(){
    window.location = '/enlaces/' + $('link_list').value + '/' + $('link_text').value + '/';
  }
  function link_checkEnter(e){
    var code;
    
    if(e && e.which){
      code = e.which;
    }else{
      if(e){ //Se soluciona el error al presionar Tab en algunos navegadores.
        code = e.keyCode;
      }
    }
    
    if(code == 13){
      link_submit();
    }
  }
