Well, I tried it, but it didn't do exactly what I wanted. However, trying it got my feet wet enough to work with it a little bit and come up with something I liked. Here is my try, which is currently active on my site:
Code:
<TITLE>
{if $config.SEO.page_title_format eq "A"}
{section name=position loop=$location}
{$location[position].0|escape}
{if %position.first%} - {$lng.lbl_seo_title}{/if}
{if not %position.last%} - {/if}
{/section}
{else}
{section name=position loop=$location step=-1}
{$location[position].0|escape}
{if %position.first%} - {$lng.lbl_seo_title}{/if}
{if not %position.last%} - {/if}
{/section}
{/if}
</TITLE>
Thanks!