<form action="index2.php" method="post" name="adminForm">
<table width="100%" height="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%">
<div class="toolbar-box">
<div class="toolbar-pad">
<div class="toolbar" id="toolbar">
</div>
<div class="header icon-48-checkin">
<?php echo $this->title ?>
</div>
<div class="clr"></div>
</div>
<div class="clr"></div>
</div>
</td>
</tr>
</table>
<div class="spacer"></div>
<div class="element-box">
<div class="element-pad">
<table class="" width="100%">
<tr>
<td width="100%" valign="top" align="left">
<p><br />
<?php
if (is_array( $this->log ) && count( $this->log ) > 0):
foreach ($this->log as $row):
?>
<span style="color: black"><?php echo $row ?></span><br />
<?php
endforeach;
endif;
if (isset( $this->backLink ) && $this->backLink):
?>
<p><a href="javascript:history.go(-1);">[ <?php echo _T( 'GO_BACK' ) ?> ]</a>
<?php
endif;
?>
</td>
</tr>
</table>
<input type="hidden" name="option" value="<?php echo $this->option ?>" />
<input type="hidden" name="act" value="<?php echo $this->act ?>">
<input type="hidden" name="task" value="<?php echo $this->task ?>" />
<input type="hidden" name="boxchecked" value="0" />
</form>
</div></div>