Context->Session->GetVariable('SessionPostBackKey', 'string');
$CategoryList = '
	
'.$this->Context->PageTitle.'
	';
$Category = $this->Context->ObjectFactory->NewObject($this->Context, 'Category');
$FirstRow = 1;
$Alternate = 0;
while ($Row = $this->Context->Database->GetRow($this->Data)) {
	$Category->Clear();
	$Category->GetPropertiesFromDataSet($Row);
	$Category->FormatPropertiesForDisplay();
	$CategoryList .= '- 
		
	';
	$FirstRow = 0;
	$Alternate = FlipBool($Alternate);
}
echo $CategoryList
	.'
 ';
?>