hi im hoping someone can give me a quick hand. i just finished creating an image map for my logo. it works perfect in IE but when i went to check it in FF the logo was not there. i have looked at my code over and over again and have tried to rearrange but no luck. i was hoping someone could have a look at my page and code and see if they spot the problem.

also on the very bottom of my page where it says powered by zencart how can i remove this from the footer and place it outside the border of the main page right below where it is now. I want to have my copy right and the powered by zencart together right at the bottom.

if anyone can advise it would be so appreciated.

here is the link
http://www.gothenaturalway.com

here is the code for tpl_header

Code:
<?php
/**
 * Common Template - tpl_header.php
 *
 * this file can be copied to /templates/your_template_dir/pagename<br />
 * example: to override the privacy page<br />
 * make a directory /templates/my_template/privacy<br />
 * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
 * to override the global settings and turn off the footer un-comment the following line:<br />
 * <br />
 * $flag_disable_header = true;<br />
 *
 * @package templateSystem
 * @copyright Copyright 2003-2006 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: tpl_header.php 4813 2006-10-23 02:13:53Z drbyte $
 */
?>

<?php
  // Display all header alerts via messageStack:
  if ($messageStack->size('header') > 0) {
    echo $messageStack->output('header');
  }
  if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
  echo htmlspecialchars(urldecode($_GET['error_message']));
  }
  if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
   echo htmlspecialchars($_GET['info_message']);
} else {

}
?>


<!--bof-header logo and navigation display-->
<?php
if (!isset($flag_disable_header) || !$flag_disable_header) {
?>

<div id="headerWrapper">
<!--bof-navigation display-->

<!--eof-navigation display-->

<!--bof-branding display-->

<div>

<img src="C:\Documents and Settings\Owner\Desktop\logo2.gif" alt="" usemap="#logo2" style="border-style:none" />

</div>

<div>
<map id="logo2" name="logo2">
<area shape="rect" alt="Contact Us" coords="651,122,734,161" href="http://www.gothenaturalway.com/index.php?main_page=page&id=1" title="Contact Us" />
<area shape="rect" alt="Live Help!!" coords="537,121,623,166" href=" http://enchantedlingerie.com/help/livehelp.php?department=2&amp;pingtimes=15" target="_blank" ></a>
<a name=byRef href=http://www.craftysyntax.com  target="_blank " title="Live Help!!" />
<area shape="rect" alt="Faq's" coords="208,120,295,162" href="http://www.gothenaturalway.com/index.php?main_page=page&id=2" title="Faq's" />
<area shape="rect" alt="Shipping Info" coords="319,121,408,168" href="http://www.gothenaturalway.com/index.php?main_page=page&id=4" title="Shipping Info" />
<area shape="rect" alt="Home Page" coords="183,205,227,221" href="http://www.gothenaturalway.com/" title="Home Page" />
<area shape="rect" alt="Login/Logout" coords="258,203,359,221" href="http://www.gothenaturalway.com/index.php?main_page=login" title="Login/Logout" />
<area shape="rect" alt="My Account" coords="391,204,481,221" href="http://www.gothenaturalway.com/index.php?main_page=account" title="My Account" />
<area shape="rect" alt="Articles" coords="513,203,574,221" href="http://www.gothenaturalway.com/index.php?main_page=page&id=5" title="Articles" />
<area shape="rect" alt="Refill Reminders" coords="605,203,729,221" href="http://www.gothenaturalway.com/index.php?main_page=page&id=6" title="Refill Reminders" />
<area shape="rect" alt="Go The Natural Way!!! We Are Your  One Stop For All Your Natural Needs" coords="0,0,747,102" href="http://www.gothenaturalway.com" title="Go The Natural Way!!! We Are Your  One Stop For All Your Natural Needs" />
<area shape="rect" alt="Go The Natural Way!!! We Are Your  One Stop For All Your Natural Needs" coords="2,104,163,220" href="www.gothenaturalway.com" title="Go The Natural Way!!! We Are Your  One Stop For All Your Natural Needs" />
<area shape="rect" alt="For Pets" coords="427,120,517,165" href="www.gothenaturalway.com/pets" title="For Pets" />
<area shape="default" nohref="nohref" alt="" />
</map>
</div>
<div id="logoWrapper">
    <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>
<?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
    <div id="taglineWrapper">
<?php
              if (HEADER_SALES_TEXT != '') {
?>
      <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
<?php
              }
?>
<?php
              if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
                if ($banner->RecordCount() > 0) {
?>
      <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
<?php
                }
              }
?>
    </div>
<?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
</div>


    

<!--eof-branding display-->

<!--eof-header logo and navigation display-->

<!--bof-optional categories tabs navigation display-->
<?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
<!--eof-optional categories tabs navigation display-->

<!--bof-header ezpage links-->
<?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
<?php } ?>
<!--eof-header ezpage links-->
</div>
<?php } ?>

thanks so much