?>
		    <td>
			<?php 
            if (empty($match->match_number)) {
                $match->match_number = '-';
            }
            echo $match->match_number;
            ?>
		    </td>
		<?php 
        }
        if ($this->project->project_type == 'DIVISIONS_LEAGUE' && $this->config['show_division']) {
            ?>
		    <td>
			<?php 
            echo JoomleagueHelperHtml::showDivisonRemark($hometeam, $guestteam, $this->config);
            ?>
		    </td>
		<?php 
        }
        if ($this->config['show_playground'] || $this->config['show_playground_alert']) {
            ?>
		    <td>
			<?php 
            JoomleagueHelperHtml::showMatchPlayground($match);
            ?>
		    </td>
		<?php 
        }
        /*
        echo JoomleagueModelTeamPlan::showPlayground(	$hometeam,
		<td width="5" class="ko">
        <?php 
                $link = "javascript:void(0);";
                $img = JHTML::image('media/com_joomleague/jl_images/discuss.gif', 'discuss.gif');
                $params = array("title" => JText::_('COM_JOOMLEAGUE_TEAMPLAN_EVENTS'), "onclick" => 'example_alertBox(\'' . $game->id . '\');');
                echo JHTML::link($link, $img, $params);
                ?>
</td>
		<?php 
            }
            ?>
		<!-- show divisions -->
		<?php 
            if ($this->config['show_division']) {
                echo '<td width="5" class="ko" nowrap="nowrap">';
                echo JoomleagueHelperHtml::showDivisonRemark($this->teams[$game->projectteam1_id], $this->teams[$game->projectteam2_id], $this->config);
                echo '</td>';
            }
            if ($this->config['show_time']) {
                ?>
		<!-- show matchtime -->
		<td width='5' class='ko'><abbr title='' class='dtstart'> <?php 
                echo JoomleagueHelperHtml::showMatchTime($game, $this->config, $this->overallconfig, $this->project);
                ?>
		</abbr></td>
		<?php 
            }
            ?>

		<?php 
            if ($this->config['show_playground'] || $this->config['show_playground_alert']) {