echo '$' . number_format(AC::load_saved_data('donation'), 2);
    ?>
</td>
		</tr>
	<?php 
}
?>

	<?php 
if ($a->include_tax == 'yes') {
    ?>

    	<tr class="darker">
			<td><strong>Subtotal</strong></td>
			<td><strong><?php 
    echo '$' . number_format(AC::get_subtotal(), 2);
    ?>
</strong></td>
		</tr>
		<tr class="darker">
			<td><strong>Tax</strong></td>
			<td><strong><?php 
    echo '$' . number_format(AC::calculate_tax(), 2);
    ?>
</strong></td>
		</tr>

	<?php 
}
?>