<?php
// ------------------------------------------------------------------------- //
//               				 SermonIndex.net                            //
// ------------------------------------------------------------------------- //
//  This site is coded for the Glory of God and the spread of the Gospel.     //
// ------------------------------------------------------------------------- //

include("mainfile.php");


//check if start page is defined
if ( isset($xoopsConfig['startpage']) && $xoopsConfig['startpage'] != "" && $xoopsConfig['startpage'] != "--" ) {
	header("Location: modules/".$xoopsConfig['startpage']."/");
	exit();
} else {
	$xoopsOption['show_rblock'] =1;
	include("header.php");
	make_cblock();  //create center block
	include("footer.php");
}
?>