<table>
<tr>
<td class="month_switch" scope="col">
<form action="" method="POST" >
<input type="hidden" name="timestamp" value=" <?php echo mktime(01,01,01,$month-1,01,$year); ?>">
<input type="hidden" name="projects_switch" value="<?php echo $project_type; ?>">
<input type="submit" value="<?php echo gettext('Prev Month'); ?>" />
</form>
</td>
<td class="month_switch" scope="col">
<form action="" method="POST" >
<input type="hidden" name="timestamp" value=" <?php echo mktime(01,01,01,$month+1,01,$year); ?>">
<input type="hidden" name="projects_switch" value="<?php echo $project_type; ?>">
<input type="submit" value="<?php echo gettext('Next Month'); ?>" />
</form>
</td>
<td class="projects_switch" scope="col">
<form action='' method='POST'>
<select name="projects_switch">
<?php
foreach($proj_types as $key=>$value){
echo "<option value=$value>".gettext($value)."</option>";
} ?>
</select>
<input type="hidden" name="year" value="<?php echo $year; ?>">
<input type="hidden" name="month" value="<?php echo $month; ?>">
<input type="submit" value="GO" >
</form>
</td>
<td class="reports_header_block" scope="col"><?php echo gettext('month_'.$month.''); echo " "; echo $year; ?></td>
</tr>
</table>