I'm using ZC version 1.3.7

How would I modify the index.php of my admin page to show the customers street address and postal code under their name. There's really no need for it to be a clickable link like the name. I'd just like to see the street and zip code at a quick glance.

I'm assuming it'd be somewhere in here....

Code:
<div id="coltwo">
<div class="reportBox">
<div class="header"><table border="0" class="header" width="90%" cellpadding="0" cellspacing="0"><tr><td width="30%" class="header" align="left"><?php echo BOX_ENTRY_NEW_CUSTOMERS; ?> </td><td width="30%" class="header" align="center"><?php echo CUSTOMERS_CONTACTED_TITLE; ?> </td><td width="30%" class="header" align="right"><?php echo BOX_ENTRY_POSTED_DATE; ?> </tr></table></div>
<?php $customers = $db->Execute("select c.customers_id as customers_id, c.customers_firstname as customers_firstname, c.customers_lastname as customers_lastname, a.customers_info_date_account_created as customers_info_date_account_created, a.customers_info_id, c.customers_contacted from " . TABLE_CUSTOMERS . " c left join " . TABLE_CUSTOMERS_INFO . " a on c.customers_id = a.customers_info_id order by a.customers_info_date_account_created DESC limit 25");

while (!$customers->EOF) { 

if (isset($_GET['action']) && $_GET['action'] == "set_contacted_options") {

if (isset($_GET['customers_contacted']) && $_GET['customers_contacted'] == 0 && $_GET['customers_id'] && $_GET['customers_id'] != 0) {
$db->Execute("update " . TABLE_CUSTOMERS . " set customers_contacted = '1' where customers_id = '" . (int)$_GET['customers_id']. "'");

zen_redirect(zen_href_link(FILENAME_DEFAULT, '', 'NONSSL'));
$messageStack->add_session(CUSTOMERS_CONSIDERED_CONTACTED_SUCCESS, 'success');

} elseif (isset($_GET['customers_contacted']) && $_GET['customers_contacted'] == 1 && $_GET['customers_id'] && $_GET['customers_id'] != 0) {
$db->Execute("update " . TABLE_CUSTOMERS . " set customers_contacted = '0' where customers_id = '" . (int)$_GET['customers_id']. "'");

zen_redirect(zen_href_link(FILENAME_DEFAULT, '', 'NONSSL'));
$messageStack->add_session(CUSTOMERS_NOT_CONSIDERED_CONTACTED_SUCCESS, 'success');

}
}

$set_customers_contacted = (isset($customers->fields['customers_contacted']) && $customers->fields['customers_contacted'] == 1) ? '<a href="' . zen_href_link(FILENAME_DEFAULT, 'action=set_contacted_options&customers_contacted= ' . $customers->fields['customers_contacted']. '&customers_id='.$customers->fields['customers_id'], 'NONSSL'). '" class="contentlink">' . zen_image(DIR_WS_IMAGES . 'icon_green_on.gif', CUSTOMERS_CONTACTED). '</a>' : '<a href="' . zen_href_link(FILENAME_DEFAULT, 'action=set_contacted_options&customers_contacted= ' . $customers->fields['customers_contacted']. '&customers_id=' .$customers->fields['customers_id']). '" class="contentlink">' . zen_image(DIR_WS_IMAGES . 'icon_red_on.gif', CUSTOMERS_NOT_CONTACTED). '</a>';

echo ' <div class="row"><table border="0" class="row" width="90%" cellpadding="0" cellspacing="0"><tr><td width="30%" class="row" align="left"><a href="' . zen_href_link(FILENAME_CUSTOMERS, 'search=' . $customers->fields['customers_lastname'] . '&origin=' . FILENAME_DEFAULT, 'NONSSL') . '" class="contentlink">'. $customers->fields['customers_firstname'] . ' ' . $customers->fields['customers_lastname'] . '</a></td><td width="30%" class="row" align="center">' . $set_customers_contacted . '</td><td width="30%" class="row" align="right">' . "\n";
echo zen_date_short($customers->fields['customers_info_date_account_created']);
echo ' </td></tr></table></div>' . "\n";
$customers->MoveNext();
}
?>
</div>