2000-03-20 05:30:19 +00:00
|
|
|
<?
|
2000-06-17 11:29:29 +00:00
|
|
|
$pageName = 'News Archives';
|
|
|
|
$focused = "home"; // Dock icon name to get a border
|
|
|
|
require("parts/preamble.php"); // Load most of document
|
|
|
|
?>
|
|
|
|
<!--NOSEARCH-->
|
|
|
|
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
|
|
|
|
<TR vAlign="top">
|
|
|
|
<TD colSpan="2"><?
|
|
|
|
tableBoxHeader( 'black', tableHeadColor );
|
|
|
|
tableTitle( $pageName, 1, tableHeadColor );
|
|
|
|
require ("news_funcs.php");
|
|
|
|
if ($month || $year) {
|
|
|
|
monthlyNews ($month, $year);
|
2000-05-06 03:11:24 +00:00
|
|
|
} else {
|
2000-06-17 11:29:29 +00:00
|
|
|
if ($string) {
|
|
|
|
searchNews ($string);
|
|
|
|
} else {
|
|
|
|
newsItem ('now', 'Web Server', "You didn't specify a search, giving up.");
|
|
|
|
}
|
2000-05-06 03:11:24 +00:00
|
|
|
}
|
2000-06-17 11:29:29 +00:00
|
|
|
tableBoxFooter ();
|
|
|
|
?></TD>
|
|
|
|
</TR>
|
|
|
|
</TABLE>
|
|
|
|
<!--NOSEARCH-->
|
|
|
|
<?
|
|
|
|
require("parts/postamble.php"); // Finish this sucker up
|
2000-03-20 05:30:19 +00:00
|
|
|
?>
|