Content Management System
\n\t\n";
//main body of site
switch ($_REQUEST["Action"]){
case "Sites":
include('Sites/index_sites.php');
break;
case "Sections":
include('Sections/index_sections.php');
break;
case "Ads":
include('Ads/index_ads.php');
break;
case "Content":
include('Content/index_content.php');
break;
case "Program":
include('Programs/index_program.php');
break;
case "EmailLists":
include('EmailLists/index_emaillist.php');
break;
case "Publishing":
include('Publishing/index_publishing.php');
break;
case "Member":
include('Members/index_members.php');
break;
case "Support":
include('Support/index_support.php');
break;
case "Tools":
include('Tools/index_tools.php');
break;
case "Home":
include('home.php');
break;
default:
include('home.php');
break;
} //end switch
//close toolbox div
echo '
';
include('includes/dsp_footer.php');
} else {
//send user to login page if no cookie
header("Location: login/login.php?page=" . $_SERVER["SCRIPT_NAME"]);
} //end if else
?>