function sort(sort_by, the_form) {
    document.getElementById('cur_sort_by').value = sort_by;
    document.getElementById(the_form).submit();
}
function sort_goal(sort_by, the_form) {
    document.getElementById('cur_goal_sort_by').value = sort_by;
    document.getElementById(the_form).submit();
}