<?php
include("navcal/common.inc");
?>
<!-- Navigation Calendars -->
<table width="100%">
<tr>
<td width="25%">
<table>
<tr>
<td>
<?php
if($month<7)
draw_month_year_navigation($year-1);
else
draw_month_year_navigation($year);
?>
</td><td width="2"> </td><td>
<?php include("navcal/navcal_core.inc"); ?>
</td><td width="2"> </td><td>
<?php
if($month<7)
draw_month_year_navigation($year);
else
draw_month_year_navigation($year+1);
?>
</td>
</tr>
</table>
</td>
<?php if($MOTD) include("navcal/motd.inc"); ?>
</tr>
</table>
<!-- End Navigation Calendars -->
<?php
// vim:ai:ts=4:sw=4:filetype=php
?>