<h2><?php echo $this->headline; ?></h2>
<?php if($this->message): ?><p><?php echo $this->message; ?></p><?php endif; ?>
<?php echo $this->options; ?>

<?php if ($this->fields): ?>
<div id="<?php echo $this->class; ?>_new" class="address_new"<?php if($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
<?php if($this->tableless): ?>
<?php echo $this->fields; ?>
<?php else: ?>
<table>
<?php echo $this->fields; ?>
</table>
<?php endif; ?>
</div>
<?php endif; ?>