<?php
//Include Common Files @1-6E5A38FD
define("RelativePath", ".");
define("PathToCurrentPage", "/");
define("FileName", "recensement_pseudo_copy.php");
include_once(RelativePath . "/Common.php");
include_once(RelativePath . "/Template.php");
include_once(RelativePath . "/Sorter.php");
include_once(RelativePath . "/Navigator.php");
//End Include Common Files

//Include Page implementation @5-11B45D65
include_once(RelativePath . "/top.php");
//End Include Page implementation

//Initialize Page @1-3F9A8A04
// Variables
$FileName = "";
$Redirect = "";
$Tpl = "";
$TemplateFileName = "";
$BlockToParse = "";
$ComponentName = "";
$Attributes = "";

// Events;
$CCSEvents = "";
$CCSEventResult = "";

$FileName = FileName;
$Redirect = "";
$TemplateFileName = "recensement_pseudo_copy.html";
$BlockToParse = "main";
$TemplateEncoding = "CP1252";
$ContentType = "text/html";
$PathToRoot = "./";
$Charset = $Charset ? $Charset : "windows-1252";
//End Initialize Page

//Include events file @1-A0C14AA5
include_once("./recensement_pseudo_copy_events.php");
//End Include events file

//Before Initialize @1-E870CEBC
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeInitialize", $MainPage);
//End Before Initialize

//Initialize Objects @1-5AFA7FD2
$Attributes = new clsAttributes("page:");
$MainPage->Attributes = & $Attributes;

// Controls
$lblMessage = & new clsControl(ccsLabel, "lblMessage", "lblMessage", ccsText, "", CCGetRequestParam("lblMessage", ccsGet, NULL), $MainPage);
$top = & new clstop("", "top", $MainPage);
$top->Initialize();
$MainPage->lblMessage = & $lblMessage;
$MainPage->top = & $top;

BindEvents();

$CCSEventResult = CCGetEvent($CCSEvents, "AfterInitialize", $MainPage);

if ($Charset) {
    header("Content-Type: " . $ContentType . "; charset=" . $Charset);
} else {
    header("Content-Type: " . $ContentType);
}
//End Initialize Objects

//Initialize HTML Template @1-E710DB26
$CCSEventResult = CCGetEvent($CCSEvents, "OnInitializeView", $MainPage);
$Tpl = new clsTemplate($FileEncoding, $TemplateEncoding);
$Tpl->LoadTemplate(PathToCurrentPage . $TemplateFileName, $BlockToParse, "CP1252");
$Tpl->block_path = "/$BlockToParse";
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeShow", $MainPage);
$Attributes->SetValue("pathToRoot", "");
$Attributes->Show();
//End Initialize HTML Template

//Execute Components @1-DC3EC8FB
$top->Operations();
//End Execute Components

//Go to destination page @1-0CB5B853
if($Redirect)
{
    $CCSEventResult = CCGetEvent($CCSEvents, "BeforeUnload", $MainPage);
    header("Location: " . $Redirect);
    $top->Class_Terminate();
    unset($top);
    unset($Tpl);
    exit;
}
//End Go to destination page

//Show Page @1-369ABEAA
$top->Show();
$lblMessage->Show();
$Tpl->block_path = "";
$Tpl->Parse($BlockToParse, false);
if (!isset($main_block)) $main_block = $Tpl->GetVar($BlockToParse);
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeOutput", $MainPage);
if ($CCSEventResult) echo $main_block;
//End Show Page

//Unload Page @1-1BE7D72F
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeUnload", $MainPage);
$top->Class_Terminate();
unset($top);
unset($Tpl);
//End Unload Page


?>