" target="_blank"><?php 
        echo $entry->getUrl();
        ?>
</a></td>
							</tr>
							<tr>
								<th>Sponsorship Level</th>
								<td><?php 
        echo $entry->getLevel();
        ?>
</td>
							</tr>
							<tr>
								<th>Sponsorship Amount</th>
								<td>$<?php 
        echo number_format($entry->getAmount(), 2);
        ?>
</td>
							</tr>
							<?php 
        if ($entry->getAmountDue() > 0) {
            ?>
								<tr>
									<th>Amount Due:</th>
									<td>$<?php 
            echo number_format($entry->getAmountDue(), 2);
            ?>
</td>
								</tr>
							<?php 
        }