Display old posts if no future posts exist

example:

<?php
            query_posts('posts_per_page=5&order=ASC&post_status=future');
            if ( !have_posts() ) 
            query_posts('posts_per_page=5&order=DESC&post_status=publish');
            if( have_posts() ) : while ( have_posts() ) : the_post();
?>