Thanks for the reply. I was able to get the same error. But there is nowhere in the code that I used to display the currency in the header where its calling for that image. The code I am using for the currency in the header is:
PHP Code:
<!-- Currencies -->
<div id="currencyHeader">
<div id="currencyText">
<?php echo 'Currencies:'?>
</div>
<div id="currencyForm">
<?=zen_draw_form('currencies'zen_href_link(basename(ereg_replace('.php',''$PHP_SELF)), ''$request_typefalse), 'get')?>
<?
    if (isset($currencies) && is_object($currencies)) {
      reset($currencies->currencies);
     $currencies_array = array();
      while (list($key, $value) = each($currencies->currencies)) {
       $currencies_array[] = array('id' => $key, 'text' => $value['title']);
      }
      $hidden_get_variables = '';
      reset($_GET);
      while (list($key, $value) = each($_GET)) {
        if ( ($key != 'currency') && ($key != zen_session_name()) && ($key != 'x') && ($key != 'y') ) {
          $hidden_get_variables .= zen_draw_hidden_field($key, $value);
        }
      }
    }

?>

<?=zen_draw_pull_down_menu('currency'$currencies_array$_SESSION['currency'], 'class="header1_sel" onchange="this.form.submit();"') . $hidden_get_variables zen_hide_session_id()?>
</form>
</div>
</div>
<!-- End Currencies -->