include("ClassLibrary/BasePage.php");
$PageRootLevel = "";
include("DataLayer/IncludesHeader.php");
include("BusinessLogic/Configurations.php");
include("WebControls/Top.php");
include("WebControls/Footer.php");
include("WebControls/ucNews.php");
class FrontPage extends BasePage
{
var $TopControl;
var $RightControl;
var $FooterContent;
var $NewsContent;
var $whichPage;
function FrontPage()
{
parent::BasePage();
$this->TopControl = new FrontEndTop($this);
$this->TopControl->Initialize();
$this->FooterContent = new FrontEndFooter($this);
$this->NewsContent = new FrontEndNews($this);
}
function GetMetaTags()
{
}
function InitPage($Root)
{
$this->RootLevel = $Root;
?>