<?php 

// Include absolute site path.
// DO NOT EDIT or things will break horribly

include("path.php");

// Set filename of special menu to be used.
// OTHERWISE LEAVE BLANK
// All menus must be located in /includes/.

$menu = "";

// If you want to include additional
// content below the header and above
// content and menu tables, set the file
// path here, OTHERWISE LEAVE EMPTY:

$header_content = "";

// If this page displays news items, set the
// variable below to 1 in order to activate
// the special blockquote style.
// OTHERWISE LEAVE EMTPY.

$blue_blockquote = "";

// This is the main page (makes sure the latest
// content / threads / potd insert is included)

$file = index;


// We're in the News Archive

$section = "content.php/news/archive/archive.php";

$section_name = "News Archive";


// Include the header

include("".$path."/includes/function_top_content.php");

include("".$path."/templates/header.php");

// Make sure news item headers are readable

echo "<style>td { color: #ffffff; } blockquote { color: #000000; }</style>";

// Include the called archive page

include("".$path."/".$QUERY_STRING."");

// Include the footer

include("".$path."/templates/footer.php");

?>