$pageName = 'News Archives'; $focused = "home"; // Dock icon name to get a border require("parts/preamble.php"); // Load most of document ?>
require ("lib/sql.php"); require ("news_funcs.php"); if ($month || $year) { tableBoxHeader( 'black', tableHeadColor ); tableTitle( $pageName, 1, tableHeadColor ); monthlyNews ($month, $year); tableBoxFooter (); } else { if ($string) { searchNews ($string); } else { newsItem ('now', 'Web Server', "You didn't specify a search, giving up."); } } ?> |