Hi Merlin,
I dont see anything that says google in it, but here is the is the code:

if (!$flag_disable_footer) {
?>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr class="footertop">
<td class="footertop" align="center">&nbsp;|&nbsp;<a href="<?php echo zen_href_link(FILENAME_DEFAULT, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a>&nbsp;|&nbsp;</td>
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0" class="footer">
<?php
if (SHOW_FOOTER_IP == '1') {
?>
<tr>
<td class="footerbottom"><?php echo TEXT_YOUR_IP_ADDRESS . ' ' . $_SERVER['REMOTE_ADDR']; ?></td>
</tr>
<?php
}
?>
<?php
if ($banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET5)) {
if ($banner->RecordCount() > 0) {
?>
<tr>
<td align="center"><div class="banners"><?php echo zen_display_banner('static', $banner); ?></div></td>
</tr>
<?php
}
}
?>
<tr>
<td class="footerbottom"><?php echo FOOTER_TEXT_BODY; ?></td>
</tr>
</table>
</td></tr>
<?php
if ($banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET6)) {
if ($banner->RecordCount() > 0) {
?>
<tr>
<td align="center"><div class="banners"><?php echo zen_display_banner('static', $banner); ?></div></td>
</tr>
<?php
}
}
?>
<?php
if (DISPLAY_PAGE_PARSE_TIME == 'true') {
?>
<tr>
<td align="center"><div>Parse Time: <?php echo $parse_time; ?> - Number of Queries: <?php echo $db->queryCount(); ?> - Query Time: <?php echo $db->queryTime(); ?></div></td>
</tr>
<?php
}
?>
<?php
} // flag_disable_footer
?>
</table>

Is this part at the bottom about queries the google code?
Thanks,
Sean