<?php if( $total_locales>0 ) : ?>
<?php while ( $locations->fetchRecord() ) : ?>
<?php
// set our variables
$locale_id = $locations->get_field('id');
$locale_name = $locations->get_field('name');
$locale_city = $locations->get_field('city');
$locale_state = $locations->get_field('state');
$locale_address = $locations->get_field('street_address');
$locale_zip = $locations->get_field('zip_code');
$locale_phone = $locations->get_field('phone');
$locale_fax = $locations->get_field('fax');
?>
<div class="locale" id="locale<?php echo $locale_id; ?>">
<h3><?php echo $locale_name; ?></h3>
<h4><?php echo $locale_address; ?></h4>
<h4><?php echo $locale_city; ?>, <?php echo $locale_state; ?> <?php echo $locale_zip; ?></h4>
<h4>Phone: <?php echo $locale_phone; ?></h4>
<h4>Fax: <?php echo $locale_fax; ?></h4>
<p><a href="<a href="http://www.google.com/maps?q=<" rel="nofollow">http://www.google.com/maps?q=<</a>;?php echo $locale_address; ?>,+<?php echo $locale_city; ?>+<?php echo $locale_zip; ?>" target="_blank">Map It!</a></p>
</div>
<?php endwhile ?>
<?php endif ?>