You could get them with:
Code:
<?php
    $products = $_SESSION['cart']->get_products();
    $reward_points=GetRewardPoints($products);
if ($reward_points > 0) {
echo '<div>';
echo 'REWARD POINTS: ' . $reward_points;
echo '</div>';
}
?>
Might need to jazz that up a bit ...