﻿function GLB_OnEnter(textBoxId, buttonToClick) {
    $('#' + textBoxId).keyup(function(e) {
        if (e.keyCode == 13) { $('#' + buttonToClick).click(); }
    });
}
