There are a couple of edits you need to make to template_portfolio.php to do this.
1.) You need to change this (around line 16):
$query_string .= "&post_type=portfolio";
to this:
$query_string .= "&post_type=portfolio";
$query_string .= "&orderby=title";
to order by Name.
2.) You need to change this (around line 61):
$output .= "<div class='sort_by_val'>";
$output .= "<span>".__('Sort by:','avisio')."</span>";
$output .= "<a href='#' id='date_sort' class='active_sort reversed'>".__('Date','avisio')."</a>";
$output .= "<a href='#' id='name_sort'>".__('Name','avisio')."</a>";
$output .= "</div></div>";
to this:
$output .= "</div>";
** Edited by James Morrison to correct error in code (see post below for details) **