<?php
// Website SuperSearch Version 1.0.00
// The free, open source, PHP nd MySQL web-based
// Bible Reference retrevial and search utility
//
// Copyright (C) 2007 Luke Mounsey
// www.BibleSuperSearch.com
// www.PreservedWord.com
//
// search_interfaces.php
// Contains functions used by all interfaces
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License included in the file
// "license.txt" for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
// Init
// run initial scripts
//require("search_init.php");
// header text
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Website SuperSearch <?php echo("$prod_version_short $search");?></title>
<style type="text/css">
@import url('search_interfaces/search_stylesheet.css');
@import url('search_interfaces/search_stylesheet_<?php echo($interface); ?>.css');
</style>
<meta name="description" content="KJV Bible SuperSearch">
<meta name="keywords" content="">
<meta name="author" content="aliveinchrist.us">
</head>
<!-- Import JavaScript functions -->
<script src="bible_javascript.js"></script>
<body>
<center>
<?php
// display form
echo($interface_text);
global $style,$size;
echo('<div class="width" style="margin-left:auto;margin-right:auto;margin-top:0;font-family:$style">');
//echo(formattingButtons());
// Send the search to the PHP scripts.
require("search_main.php");
?>
</div>
<!-- End Body -->
<div class=center>
<br><BR>
<br><BR></div>
</div>
</body>
</html>