2000-06-16 05:24:11 +00:00
|
|
|
<? // Preamble
|
|
|
|
$pageName = "Search";
|
|
|
|
$focused = "none"; // Dock icon name to gets a border
|
|
|
|
require("parts/preamble.php"); // Load most of document
|
|
|
|
?>
|
|
|
|
<?php
|
|
|
|
if ($type_of_search == "news") {
|
2000-06-16 05:32:55 +00:00
|
|
|
$string = $words;
|
2000-06-16 05:29:16 +00:00
|
|
|
include("news_search.php");
|
2000-06-16 05:24:11 +00:00
|
|
|
}
|
2000-06-16 05:29:16 +00:00
|
|
|
else {
|
2000-06-16 05:32:55 +00:00
|
|
|
echo '<P>That type of search isn\'t supported yet. Please check back later.';
|
2000-06-16 05:29:16 +00:00
|
|
|
}
|
2000-06-16 05:24:11 +00:00
|
|
|
?>
|
|
|
|
<?
|
|
|
|
require("parts/postamble.php"); // Finish this sucker up
|
|
|
|
?>
|