<?php 
 $page="News";
 include 'header.php';
 include 'newsitems.php';
?>

<table border=1 cellpadding=5 cellspacing=1 width="100%">
<p class="pageHeader">News</p>
<tr><td valign=top>
Latest News:
<table>
<?php
  for ($i = 0; $i < count($latest); $i++) {
    item($latest[$i]);
  }
?>
</table>
<p>
Older News:
<table>
<?php
  for ($i = 0; $i < count($old); $i++) {
    item($old[$i]);
  }
?>
</table>

</td>
</tr>
</table>

<?php 
 include 'footer.php' 
?>
