<!--bof Product Price block -->
<h2 id="productPrices" class="productGeneral">
<?php
// base price
if ($show_onetime_charges_description == 'true') {
$one_time = '<span >' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br />';
} else {
$one_time = '';
}
$cheapest = zen_get_products_discount_price_qty((int)$_GET['products_id'],20000);
$cheapest = '$' . number_format($cheapest, 2);
$price = zen_get_products_actual_price((int)$_GET['products_id']);
$price = '$' . number_format($price, 2);
if ( $cheapest != $price && ( !stristr($price,"productSpecialPrice") ) && ( !stristr($price,"call_for_prices") ) ) {
echo 'As low as ' . $cheapest . '';
}
else {
echo $price;
}
?></h2>
<!--eof Product Price block -->