<?
include("utils.php");

drawHeader("Archives");

if ($_GET['comicID'] < 1 || $_GET['comicID'] > getCurrentID()) {
	$_GET['comicID'] = 1;
}

drawComic($_GET['comicID']);
echo "<BR>\n";
drawControls($_GET['comicID']);

echo "<BR><BR><HR NOSHADE>\n";

drawEntries(getTimeReleased($_GET['comicID']));

drawFooter();

?>
