<?if(VALID_DOCUMENT != 1) die('what?');?>
<col width="20px">
<col width="*">
<col width="*">
<col width="20%">
<col width="*">
<col width="50%">
<tr><th class="title" colspan="6">Results for <?=$this->name?></th></tr>
<?if($this->count > 0){
$this->print_pages_row();
$this->print_controls_row(false);
?>
<tr>
<th class="center"><input type="checkbox" onClick="setChecked(this.form,'key',this.checked);"/></th>
<th class="left">MBox</th>
<th class="left">Date</th>
<th class="left">From</th>
<th class="left">Size</th>
<th class="left">Subject</th>
</tr>
<?
if(is_array($this->headers)){
foreach($this->headers as $header)
$header->print_table_row();
}
$this->print_controls_row();
$this->print_pages_row();
}
else{?>
<tr><td class="center" colspan="6"><h2>No Mails Founded</h2></td></tr>
<?}?>