Mike,

Yes it can be done, but it requires hacking the core code.

In includes/modules/pages/shopping_cart/header_php.php find:
Code:
$cartShowTotal = $currencies->format($_SESSION['cart']->show_total());
then beneath it put:
Code:
$original_currency = $_SESSION['currency'];
$_SESSION['currency'] = EXTRA_CURRENCY;
$cartShowTotalExtraCurrency = $currencies->format($_SESSION['cart']->show_total());
$_SESSION['currency'] = $original_currency;
Now drop $cartShowTotalExtraCurrency anywhere you like into your cart template to display the subtotal in your second currency.

You can repeat this process for other values as needed.