$table_body1 .= "</div>";
$table_body1 .= "<div class=\"row bcoem-account-info\">";
$table_body1 .= "<div class=\"col-lg-3 col-md-3 col-sm-4 col-xs-4\"><strong>Country</strong></div>";
$table_body1 .= "<div class=\"col-lg-9 col-md-9 col-sm-8 col-xs-8\">" . $country . "</div>";
$table_body1 .= "</div>";
$table_body1 .= "<div class=\"row bcoem-account-info\">";
$table_body1 .= "<div class=\"col-lg-3 col-md-3 col-sm-4 col-xs-4\"><strong>Phone</strong></div>";
$table_body1 .= "<div class=\"col-lg-9 col-md-9 col-sm-8 col-xs-8\">" . $phone . "</div>";
$table_body1 .= "</div>";
$table_body1 .= "<div class=\"row bcoem-account-info\">";
$table_body1 .= "<div class=\"col-lg-3 col-md-3 col-sm-4 col-xs-4\"><strong>AHA Number</strong></div>";
$table_body1 .= "<div class=\"col-lg-9 col-md-9 col-sm-8 col-xs-8\"><a href=\"http://www.homebrewersassociation.org/membership/join-or-renew/\" target=\"_blank\" data-toggle=\"tooltip\" title=\"An American Homebrewers Association (AHA) membership is required if one of your entries is selected for a Great American Beer Festival Pro-Am.\" data-placement=\"right\">" . $aha_number . "</a></div>";
$table_body1 .= "</div>";
$table_body1 .= "<div class=\"row bcoem-account-info\">";
$table_body1 .= "<div class=\"col-lg-3 col-md-3 col-sm-4 col-xs-4\"><strong>Drop Off Location</strong></div>";
$table_body1 .= "<div class=\"col-lg-9 col-md-9 col-sm-8 col-xs-8\">" . dropoff_location($_SESSION['brewerDropOff']) . "</div>";
$table_body1 .= "</div>";
$table_body1 .= "<div class=\"row bcoem-account-info\">";
$table_body1 .= "<div class=\"col-lg-3 col-md-3 col-sm-4 col-xs-4\"><strong>Club</strong></div>";
$table_body1 .= "<div class=\"col-lg-9 col-md-9 col-sm-8 col-xs-8\">" . $club . "</div>";
$table_body1 .= "</div>";
if ($row_brewer['brewerJudgeNotes'] != "") {
    $table_body1 .= "<div class=\"row bcoem-account-info\">";
    $table_body1 .= "<div class=\"col-lg-3 col-md-3 col-sm-4 col-xs-4\"><strong>Notes to Organizers</strong></div>";
    $table_body1 .= "<div class=\"col-lg-9 col-md-9 col-sm-8 col-xs-8\">";
    $table_body1 .= "<em>" . $row_brewer['brewerJudgeNotes'] . "</em>";
    $table_body1 .= "</div>";
    $table_body1 .= "</div>";
}
if ($entry_discount) {
    $table_body1 .= "<div class=\"row bcoem-account-info\">";
</td> 
        </tr>
    <?php 
            }
        }
        // END foreach ($dropoff_id as $id)
        ?>
    </tbody>
    </table>
    <p>Total: <?php 
        echo array_sum($all_location_count);
        ?>
</p>
    
	<?php 
        $dropoff_location_ship = dropoff_location("0");
        $dropoff_location_ship = explode("^", $dropoff_location_ship);
        if ($dropoff_location_ship[0] > 0) {
            unset($location_count);
            do {
                $dropoff_count_user = dropoff_count_user($dropoff_location[1]);
                $location_count[] = $dropoff_count_user;
            } while ($row_dropoffs = mysql_fetch_assoc($dropoffs));
            ?>
    <h1>Entry Totals at the Shipping Location</h1>
    <p><?php 
            echo $_SESSION['contestShippingName'];
            ?>
<br /><?php 
            echo $_SESSION['contestShippingAddress'];
            ?>
$table_body1 .= "</tr>";
$table_body1 .= "<tr>";
$table_body1 .= "<td class='dataLabel'>Country:</td>";
$table_body1 .= "<td class='data'>" . $country . "</td>";
$table_body1 .= "</tr>";
$table_body1 .= "<tr>";
$table_body1 .= "<td class='dataLabel'>Phone Number(s):</td>";
$table_body1 .= "<td class='data'>" . $phone . "</td>";
$table_body1 .= "</tr>";
$table_body1 .= "<tr>";
$table_body1 .= "<td class='dataLabel'>AHA Number:</td>";
$table_body1 .= "<td class='data'>" . $aha_number . "&nbsp;&nbsp;<em>*An <a href='http://www.homebrewersassociation.org/' target='_blank'>American Homebrewers Association</a> (AHA) membership is required if one of your entries is selected for a <a href='http://www.greatamericanbeerfestival.com/the-competition/pro-am-competition/' target='_blank'>Great American Beer Festival Pro-Am</a>.</em></td>";
$table_body1 .= "</tr>";
$table_body1 .= "<tr>";
$table_body1 .= "<td class='dataLabel'>Drop Off Location:</td>";
$table_body1 .= "<td class='data'>" . dropoff_location($_SESSION['brewerDropOff']) . "</td>";
$table_body1 .= "</tr>";
$table_body1 .= "<tr>";
$table_body1 .= "<td class='dataLabel'>Club:</td>";
$table_body1 .= "<td class='data'>" . $club . "</td>";
$table_body1 .= "</tr>";
$table_body1 .= "<tr>";
$table_body1 .= "<td class='dataLabel'>Available to Judge?</td>";
$table_body1 .= "<td class='data'>";
if (!empty($_SESSION['brewerJudge']) && $action != "print") {
    $table_body1 .= yes_no($_SESSION['brewerJudge'], $base_url);
} elseif (!empty($_SESSION['brewerJudge']) && $action == "print") {
    $table_body1 .= yes_no($_SESSION['brewerJudge'], $base_url, 3);
} else {
    $table_body1 .= "None entered";
}