Didn’t get that to work, but I did figure it out, adjusting the Alphabetizing Posts script, I did the following
<?php
$posts = query_posts($query_string .
‘&orderby=date&order=asc&posts_per_page=-1’);
if (have_posts()) : while (have_posts()) : the_post(); ?>
This worked just fine.